Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * Child Theme functions and definitions
- *
- */
- /**
- * Loading Parent theme stylesheet
- *
- */
- add_action( 'wp_enqueue_scripts', 'catchresponsive_child_enqueue_styles' );
- function catchresponsive_child_enqueue_styles() {
- wp_enqueue_style( 'catchresponsive-parent-style', get_template_directory_uri() . '/style.css' );
- }
- /**
- * Function to move breadcrumb in child theme below slider
- */
- function catchresponsive_child_move_breadcrumb() {
- remove_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
- add_action( 'catchresponsive_before_content', 'catchresponsive_add_breadcrumb', 15 );
- }
- add_action( 'init', 'catchresponsive_child_move_breadcrumb' );
Advertisement
Add Comment
Please, Sign In to add comment