Skip to content

OpenDevelopmentMekong/wp-feature-box

 
 

Repository files navigation

WP Feature Box

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

Features

  • 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

Usage

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 for single feature box

<?php
$id = 12; // The id of the feature box item
echo get_feature_box($id);
?>

PHP for slider feature box

<?php
$ids = array(12, 14, 16); // List of ids
echo get_feature_box_slider($ids);
?>

Support

Having trouble with WP Feature Box? Go to our issues page and we'll help you there!

About

Create custom featured content boxes and slides inside your WordPress site.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 60.1%
  • JavaScript 27.3%
  • CSS 12.6%