Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- *************Simple shortcode query ******************
- //simple shortcode query >>>>>>>>>>>>>>
- function counter_shortcode($atts, $content = null) {
- //add attribute
- extract( shortcode_atts( array(
- 'title' => '',
- 'icon' => ''
- ), $atts, 'counter'));
- return'
- <!--Your content here-->
- ';
- }
- add_shortcode('counter', 'counter_shortcode');
- //For call shortcode in index.php
- <?php echo do_shortcode('[counter title="Testimonail" icon="user"]');?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement