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. ?>