4
by 4bzthemes
1 (0 reviews)
4bzCore
A collection of shortcodes, widgets, a shortcode builder, multiple featured images, a related posts module, and much more.
Tested up to WP 4.3 (Current: 6.9)
v1.0.5
Current Version v1.0.5
Updated 10 years ago
Last Update on 14 Sep, 2015
Synced 12 hours ago
Last Synced on
Rank
#33,389
-3573 this week
Active Installs
10+
-16.7%
KW Avg Position
N/A
—
No change
Downloads
3.5K
+2 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 20
10+
20+
8,220
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,389
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
- 1.0.5
- Last Updated
- Sep 14, 2015
- Requires WP
- 3.8+
- Tested Up To
- 4.3
- PHP Version
- N/A
- Author
- 4bzthemes
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 NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Popup Builder - Create highly converting, mobile friendly marketing popups.
200K+ installs
#259
The SEO Framework – Fast, Automated, Effortless.
200K+ installs
#273
The Ultimate Video Player For WordPress - by Presto Player
100K+ installs
#319
Frequently Asked Questions
Common questions about 4bzCore
[Support Forum] (http://wordpress.org/support/plugin/4bzcore) on WordPress.org.
4bzCore provides a function to retrieve the post meta data, which includes the featured images, video/audio embed, and the related posts ids. Here is the suggested code to use: global $fourbzcore_plugin; if ( isset( $fourbzcore_plugin ) && method_exists( $fourbzcore_plugin, 'get_post_meta' ) ) { $your_variable = $fourbzcore_plugin->get_post_meta( $post_id /* optional */ ); } Here is the structure of the array: array( // featured images. 'media' => array( array ( 'url' => string, 'alt_text' => string, 'width' => int, 'height' => int, ) ), // video/audio iframe embed code. 'media_embed' => array ( 'code' => string, ), // related posts ids. 'related' => string, ) Note that the default wordpress featured image is not included in this array. You have to retrieve this through wordpress functions, such as get_the_post_thumbnail.
4bzCore provides a function to retrieve the user meta data, which includes the user avatar, title, address, phone number, social share links, and skills. Here is the suggested code to use: global $fourbzcore_plugin; if ( isset( $fourbzcore_plugin ) && method_exists( $fourbzcore_plugin, 'get_user_meta' ) ) { $your_variable = $fourbzcore_plugin->get_user_meta( $user_id /* optional */ ); } Here is the structure of the array: array( // Title 'title' => string, // Contact info 'contact_address' => string, 'contact_phone' => string, 'contact_facebook' => string, 'contact_twitter' => string, 'contact_google' => string, 'contact_linkedin' => string, 'contact_instagram' => string, 'contact_tumblr' => string, 'contact_pinterest' => string, // Skills 'items' => array, // Avatar 'avatar' => string, 'avatar_width' => int, 'avatar_height' => int, 'avatar_alt' => string, )
This shortcode/widget displays sticky posts, and if there are no sticky posts to display, it defaults to display recent posts. So, if there is no limit set and there are no sticky posts, then this shortcode/widget will display all posts. This is not a bug, but the default behaviour.