Skip to content

Instantly share code, notes, and snippets.

@bekarice
Last active November 28, 2019 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bekarice/cbf66e391bd727ffbfd0 to your computer and use it in GitHub Desktop.
Save bekarice/cbf66e391bd727ffbfd0 to your computer and use it in GitHub Desktop.
Apply code or styles to a single page in WordPress
/**
* Change styles applied to one page
*
* Uses 'wp' to run after WP class object so page content is available
*/
function sv_hide_header_footer_for_page() {
if( is_page( 2576 ) ) {
?> <style>
header#header,
div.footer-widgets { display:none; }
</style>
<?php
}
}
add_action( 'wp', 'sv_hide_header_footer_for_page' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment