检查当前post类型是否为自定义post类型€“WordPress
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了检查当前post类型是否为自定义post类型€“WordPress相关的知识,希望对你有一定的参考价值。
Check if current post type is a custom post type – WordPress.Returns a true/false-statement.
Can be used outside The Loop.
function is_custom_post_type() { global $wp_query; foreach ($post_types as $post_type ) { if (get_post_type($post_type->ID) == get_post_type($wp_query->post->ID)) { return true; } else { return false; } } }
以上是关于检查当前post类型是否为自定义post类型€“WordPress的主要内容,如果未能解决你的问题,请参考以下文章
TypeScript - 检查给定的'any'参数是否为自定义类型?