Advertisement
Guest User

related articles shortcode kleo

a guest
Feb 18th, 2014
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_shortcode('kleo_related_articles', 'kleo_related_articles_func');
  2.  
  3. function kleo_related_articles_func( $atts, $content = null ) {
  4.    
  5.     $output = '';
  6.     //extract(shortcode_atts(array(), $atts));
  7.    
  8.     ob_start();
  9.    
  10.     get_template_part('page-parts/posts-related');
  11.    
  12.     $output = ob_get_clean();
  13.    
  14.     return $output;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement