php 为自定义帖子类型创建特定模板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 为自定义帖子类型创建特定模板相关的知识,希望对你有一定的参考价值。
<?php
/*
Template Name: Employee Story
Template Post Type: post, page, employee_story
*/
$page_type = 'post';
global $wpdb;
// $wpdb->show_errors();
// $wpdb->last_error;
// include('includes/form-settings.php');
$field_array = array(
'full_name',
'title',
'sub',
'image_banner',
'post_title',
'post_sub',
'post_body'
);
foreach ($field_array as $custom_field) {
$$custom_field = get_field($custom_field);
}
// ....
?>
以上是关于php 为自定义帖子类型创建特定模板的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress 为自定义帖子类型存档页面选择了错误的模板
如何从模板中的自定义帖子类型中仅提取一个类别?
PHP 检查当前帖子类型是否为自定义帖子类型 - WordPress
在 Wordpress 中为自定义帖子类型添加附加页面
php 为自定义帖子类型启用UX Builder
php 为自定义帖子类型启用布局构建器示例