by Rakib Hossain
1 (0 reviews)
Violet Custom Post Meta
Plugin for Theme developers, Who wants to build portfolio themes rapidly.
Tested up to WP 4.9 (Current: 6.9)
vtrunk
Current Version vtrunk
Updated 7 years ago
Last Update on 06 Mar, 2018
Synced 14 hours ago
Last Synced on
Rank
#52,707
—
No change
Active Installs
1+
—
No change
KW Avg Position
N/A
—
No change
Downloads
890
—
Total downloads
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
42,560
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 9 more installs to reach 10+
Rank Changes
Current
#52,707
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
- Mar 06, 2018
- Requires WP
- 4.5+
- Tested Up To
- 4.9
- PHP Version
- N/A
- Author
- Rakib Hossain
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 Violet Custom Post Meta
No, When you select portfolio image, Portfolio link would be hidden.
Use vcpm_meta_fields_control hook. It accept max 3 arguments ($html,$fields,$post). <?php function example_callback( $html, $fields, $post ) { foreach ($fields as $field) { $value = get_post_meta($post->ID, $field['id'], true); // Actions you need to do } return $html; } add_filter( 'vcpm_meta_fields_control', 'example_callback' 1, 3 ); ?> I need samply query code Hear is sample query code for portfolio post types and their meta. <?php //Portfolio post and meta query $args = array( 'post_type' => 'portfolio'); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); $post_id = get_the_ID(); $terms = get_the_terms( $post_id, 'portfolio_category' ); $post_custom = get_post_custom($post_id); $portfolio_title = get_the_title(); $portfolio_sub = $post_custom["sub_name"][0]; $portfolio_img = $post_custom["portfolio_img"][0]; $portfolio_link = esc_url($post_custom["portfolio_link"][0]); $portfolio_thumb_url = ''; $portfolio_thumb_url = wp_get_attachment_url( get_post_thumbnail_id() ); } ?>