Code-Snippets-Functions/Execute a function on a child site/WP Meteor/exclude-post-page-by-id.txt

7 lines
155 B
Text

add_filter('wpmeteor_enabled', function ($value) {
global $post;
if ($post && $post->ID == 1) {
return false;
}
return $value;
});