Comments JOSE L VASQUEZ started the conversation1 week ago on January 26, 2026 at 5:08pmHi, I need to disable the footer ONLY in the single posts, and pages, NO in the Home page. How can I do that please?Attached files: Screenshot 2026-01-26 at 12.02.44 PM.png 3,067PenciDesign replied1 week ago on January 27, 2026 at 1:35amHi, You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/ add_filter( 'get_template_part', function ( $slug, $name ) { if ( ( is_single() || is_page() ) && $slug === 'template-parts/footer/footer' ) { return false; } return $slug; }, 10, 2 ); Regards,PenciDesign. Sign in to reply ...
Hi, I need to disable the footer ONLY in the single posts, and pages, NO in the Home page. How can I do that please?
Attached files: Screenshot 2026-01-26 at 12.02.44 PM.png
Hi,
You should paste this code into the function.php of the child theme or via the CodeSnippet plugin here: https://wordpress.org/plugins/code-snippets/
add_filter( 'get_template_part', function ( $slug, $name ) { if ( ( is_single() || is_page() ) && $slug === 'template-parts/footer/footer' ) { return false; } return $slug; }, 10, 2 );Regards,
PenciDesign.