我正在尝试只在打包的页面上运行脚本。。。但我找不到合适的钩子
这是我的剧本
function posts_for_current_author($query) {
global $current_user;
if($current_user->data->wp_user_level < 9) {
global $user_ID;
$query->set(\'author\', $user_ID);
}
return $query;
}
add_filter(\'pre_get_posts\', \'posts_for_current_author\');