你可以template_redirect
并执行助手函数:
add_action( \'template_redirect\', \'wpse_75558_count\' );
function wpse_75558_count()
{
if ( is_singular() )
setPostViews( get_the_ID() );
}
至
display 在post视图中,您必须使用稍后的挂钩。我会推荐
the_content
:
add_filter( \'the_content\', \'wpse_75558_show_count\' );
function wpse_75558_show_count( $content )
{
$count = getPostViews( get_the_ID() );
if ( ! is_numeric( $count ) )
$count = \'\'; // prevent errors showing to visitors
else
$count = "<p class=\'view-count\'>Views: $count</p>";
return $content . $count;
}
只是一个想法,我还没有测试代码。