您可以在函数中放置函数。php并附加一个动作挂钩。它将决定何时调用函数。如果您只想隐藏帖子的内容,可以使用此挂钩
add_action(\'the_content\', \'yourcustomfunction\')
或者我建议在实际运行post查询之前调用这个钩子。
add_action(\'pre_get_posts\', \'yourcustomfunction\')
function yourcustomfunction () {
// YOUR CUSTOM CODE HERE
}
将此放置在主题的功能中。php。