mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
155 B
Text
7 lines
155 B
Text
add_filter('wpmeteor_enabled', function ($value) {
|
|
global $post;
|
|
if ($post && $post->ID == 1) {
|
|
return false;
|
|
}
|
|
return $value;
|
|
});
|