WordPress主题的自定义字段和自定义类型可以帮助您更好地组织和展示网站的内容。下面是使用自定义字段和自定义类型的基本步骤:
例如,在博客文章中添加一个名为“作者”的自定义字段,值是“张三”,则可以在单个文章模板中使用如下代码,展示自定义字段:
<?php
$author = get_post_meta(get_the_ID(), 'author', true);
if(!empty($author)) {
echo '作者:' . $author;
}
?>
自定义类型可以帮助您创建一个特定类型的文章,例如产品或人员库。下面是使用自定义类型的基本步骤:
function register_custom_post_type() {
register_post_type('product',
array(
'labels' => array(
'name' => __('产品'),
'singular_name' => __('产品')
),
'public' => true,
'has_archive' => true,
'rewrite' => array('slug' => 'product'),
'supports' => array('title', 'thumbnail', 'editor', 'excerpt')
)
);
}
add_action('init', 'register_custom_post_type');
<?php
while ( have_posts() ) : the_post();
the_title( '<h1 class="entry-title">', '</h1>' );
the_post_thumbnail();
the_content();
endwhile;
?>
以上就是使用WordPress主题的自定义字段和自定义类型的基本步骤。您可以根据需要自定义代码并创建具有各种不同功能的自定义字段和自定义类型。