Guest User

Untitled

a guest
Nov 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. function ctest_shortcode($atts) {
  2. extract(shortcode_atts(array(
  3. 'a' => '11111'
  4. ), $atts));
  5. ob_start();
  6. get_template_part('test');
  7. return ob_get_clean();
  8. }
  9. add_shortcode('test', 'ctest_shortcode');
Add Comment
Please, Sign In to add comment