Skip to content

Instantly share code, notes, and snippets.

@torounit
Created December 22, 2017 07:34
Show Gist options
  • Save torounit/754fa256212021edf36cb7192d3ae38f to your computer and use it in GitHub Desktop.
Save torounit/754fa256212021edf36cb7192d3ae38f to your computer and use it in GitHub Desktop.
WordPressでTOPページのみ、公開したい場合のハック。
<?php
add_filter( 'option_blog_public', function( $value ) {
if ( is_front_page() ) {
return 1;
}
return $value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment