查找请求是否为POST,以及POST ID

时间:2011-05-03 作者:I-M-JM

我需要一个钩子,这样当来访者落在任何一根柱子上时(not page), 我需要录一首歌。

我如何才能找到请求是否用于post,是否有任何钩子可以找到加载的内容是否是post,如果是,post id是什么

1 个回复
最合适的回答,由SO网友:Milo 整理而成

类似这样的方法会奏效:

function record_hit_if_post(){
    global $wp_query;
    if($wp_query->is_single==1)
        // single post\'s ID:
        // $wp_query->post->ID;
}
add_filter(\'template_redirect\', \'record_hit_if_post\');

结束

相关推荐

How to limit the posts

我有一个新的问题,我如何限制来自此查询的帖子数量?我只需要7个<?php $newsposts = new WP_Query(\'cat=restaurant\'); if ( is_front_page()) { echo \'<h3 class=\"member-review\">Latest Restaurants</h3> <div id=\"extra\">\'; if ($newspos