在前端显示任意页面的帖子对象 时间:2020-05-03 作者:Nayan Chowdhury 我想看看$post 对象位于前端。我想通过functions.php.我在做什么function.php 是:global $post; print_r($post); 但前端没有显示任何内容。我做错了什么? 1 个回复 SO网友:simongcc 因为在函数中。php,现在运行print_r()还为时过早,您可以在一段时间内运行它init hook 像这样:将其放置在主题的函数中。phpadd_action( \'init\', \'test_trace\' ); function test_trace() { global $post; print_r($post); } 文章导航