by Grzegorz Sarzyński
1 (0 reviews)
Zen Custom Fields
Easy to implement and use custom fields for WordPress templates.
Tested up to WP 5.2 (Current: 6.9)
vtrunk
Current Version vtrunk
Updated 6 years ago
Last Update on 09 May, 2019
Synced 15 hours ago
Last Synced on
Rank
#33,452
+133 this week
Active Installs
10+
-16.7%
KW Avg Position
N/A
—
No change
Downloads
1.8K
—
Total downloads
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 20
10+
20+
6,149
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 3 more installs to reach 20+
Rank Changes
Current
#33,452
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- trunk
- Last Updated
- May 09, 2019
- Requires WP
- 3.1+
- Tested Up To
- 5.2
- PHP Version
- N/A
- Author
- Grzegorz Sarzyński
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Zen Custom Fields
Simply add table to your page between [zen-fileds] short-tags. And use zen_field() function to output value from that table. e.g. <?php echo zen_field(1) ?> - will output value from second row of your table that contains values only <?php echo zen_field(1, 2) ?> - output values from 2 dimensional tables <?php echo zen_field('field name 2') ?> - output value from table with key names defined. Key names should be defined in `<th>` - table header tags. <?php echo zen_field('field name 2','column 1') ?> - output values from 2 dimensional table with key names defined. Check 'Screenshots' section for more details.
Firstly define the name of each table e.g. <table data-name="some table name">...</table>, secondly use the table name in the last parameter of zen_field() function e.g. <?php echo zen_field('field name 1','column name 2', 'some table name') ?>
The variable $zen_fields->tables holds an array with values from all the tables on the page. You can use this variable to iterate the data. The way varies depending on table structure. You can output structure of the variable for testing using <pre><?php print_r($zen_fields->tables) ?></pre> code.
You can submit an issue on GitHub page, where the main repository of the plugin is held. GitHub account is needed. https://github.com/Grzegorzsa/zen-custom-fields/issues
By default output is not escaped which allows you to echo html tags e.g. links or images. If you would like to escape your output use 'zen_field_esc()' instead of 'zen_field()' function.
'zen_field_src()' function can be used to extract link from the image placed in custom field.