Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function test_shortcode_shortcode( $atts, $content = null ) {
- extract( shortcode_atts( array(
- 'test' => '1',
- ), $atts ) );
- return sprintf( '<a href="#%1$s" class="button">%1$s</a>', $test );
- }
- add_shortcode( 'test_shortcode', 'test_shortcode_shortcode' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement