Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Function to rearrange the sections in child theme
- */
- function parallax_frame_child_rearrange_sections(){
- /**
- * Remove Promotion Headline from its current position
- */
- remove_action( 'parallax_frame_before_content', 'parallax_frame_promotion_headline', 60 );
- /**
- * Remove Logo Slider from its current position
- */
- remove_action( 'parallax_frame_before_content', 'parallax_frame_logo_slider', 70 );
- /**
- * Remove Header Highlight from its current position
- */
- remove_action( 'parallax_frame_before_content', 'parallax_frame_header_highlight_content_display', 30 );
- /**
- * Remove Portfolio from its current position
- */
- remove_action( 'parallax_frame_before_content', 'parallax_frame_portfolio_display', 40 );
- /**
- * Add Promotion Headline before Header Highlight Content
- */
- add_action( 'parallax_frame_after_content', 'parallax_frame_promotion_headline', 26 );
- /**
- * Add Header Highlight Content
- */
- add_action( 'parallax_frame_after_content', 'parallax_frame_header_highlight_content_display', 26 );
- /**
- * Add Promotion Headline after Header Highlight Content
- */
- add_action( 'parallax_frame_after_content', 'parallax_frame_promotion_headline', 28 );
- /**
- * Add Portfolio below Promotion Headline
- */
- add_action( 'parallax_frame_after_content', 'parallax_frame_portfolio_display', 29 );
- /**
- * Add Logo Slider after Featured Content in footer
- */
- add_action( 'parallax_frame_after_content', 'parallax_frame_logo_slider', 35 );
- }
- add_action( 'init', 'parallax_frame_child_rearrange_sections' );
Advertisement
Add Comment
Please, Sign In to add comment