Advertisement
Guest User

Untitled

a guest
Oct 10th, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2. if ( ! function_exists( 'nevia_setup' ) ) :
  3. function nevia_child_setup() {
  4. /**
  5. * Shortcodes
  6. */
  7. require( get_stylesheet_directory() . '/inc/shortcodes.php' );
  8.  
  9. remove_shortcode( 'recent_blog_carousel' );
  10. add_shortcode( 'recent_blog_carousel', 'child_pp_recent_blog_carousel' );
  11. }
  12. endif; // nevia_setup
  13. add_action( 'after_setup_theme', 'nevia_child_setup' );
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement