在我的函数中,我有此代码来显示自定义帖子的类别存档。
function add_custom_types_to_tax( $query ) {
if( is_category() || is_tag() && empty( $query->query_vars[‘suppress_filters’]
) ) {
// Get all your post types
$post_types = get_post_types();
$query->set( ‘post_type’, $post_types );
return $query;
}
}
add_filter( ‘pre_get_posts’, ‘add_custom_types_to_tax’ );
但我收到以下错误消息:
使用未定义常量“pre\\u get\\u posts”-假定为“pre\\u get\\u posts”
使用未定义常量“add\\u custom\\u types\\u to\\u tax”-假定“add\\u custom\\u types\\u to\\u tax”
如何在没有错误的情况下使其正常工作?