php 在WordPress中添加自定义帖子状态
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在WordPress中添加自定义帖子状态相关的知识,希望对你有一定的参考价值。
<?php
add_filter('display_post_states', 'wpsites_custom_post_states');
function wpsites_custom_post_states($states) {
global $post;
if( ('page'==get_post_type($post->ID)) && ('page-templates/custom-page-template.php'==get_page_template_slug($post->ID)) ) {
$states[] = __('Custom state');
}
}
以上是关于php 在WordPress中添加自定义帖子状态的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress - 如何通过其分类过滤添加的自定义帖子?
php 在帖子中添加元变量(自定义字段,ej template-slug)#wordpress
php Wordpress在WP REST API上添加自定义帖子类型
php 将新的自定义帖子类型添加到Wordpress
PHP 将自定义帖子类型添加到rss feed [WordPress]
Wordpress 自定义帖子类型中的战略问题?