• Resolved berli50

    (@berli50)


    Hi i would like to remove the post navigation in my child theme how can i remove it with a function (not hide with CSS) in my storefront child theme?
    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Put this code in your child theme’s functions.php file

    function custom_remove_post_nav(){
      remove_action( 'storefront_single_post_after',	'storefront_post_nav' );
    
    }
    add_action( 'after_setup_theme', 'custom_remove_post_nav' );

    Thread Starter berli50

    (@berli50)

    Yeah thanks friend!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove Previous and Next post navigation?’ is closed to new replies.