😆WP Meteor (ok)
add_filter('wpmeteor_enabled', function ($value) {
global $post;
if ($post && $post-> ID == 1) {
return false;
}
return $value;
});
Last updated
Was this helpful?
add_filter('wpmeteor_enabled', function ($value) {
global $post;
if ($post && $post-> ID == 1) {
return false;
}
return $value;
});
Last updated
Was this helpful?