Create custom featured embedable content boxes and slider inside your WordPress site. Plugin created as part of the work of the ((o))ecoLab and featured on projects like Oxpeckers
- Easy to combine boxes to create slider
- Shortcodes
- Allow users to embed your feature box
- Responsive design
- Multiple custom links and text
- Custom background image
Install this plugin on your wp-content/plugins
directory and activate the plugin. Feature box will appear on your dashboard menu, click Add feature item
to create your first!
There are two ways to use your feature box, you can insert on a post by clicking on the post editor button or you can use PHP:
<?php
$id = 12; // The id of the feature box item
echo get_feature_box($id);
?>
<?php
$ids = array(12, 14, 16); // List of ids
echo get_feature_box_slider($ids);
?>
Having trouble with WP Feature Box? Go to our issues page and we'll help you there!