我有一个非常简单的插件:
add_action('pre_get_posts', 'post_page');
function post_page()
{
global $wp_query;
if(is_category())
{
echo '<pre>';
print_r($wp_query);
exit;
}
}
我必须在我的插件中获取类别 ID。我没有 SEO 网址,但 category__in 没有 SEO 网址
没有 SEO 友好的 url(category__in 不为空):
使用 seo 友好的 url(category__in 为空):
http://phpxpert.com/category/jquery/
为什么会发生这种情况,如何在我的插件中获取 post_id 和 category_ids?
谢谢你