You can use a custom field eaisly then call into the template
(图中显示的是自定义字段<;--我的安装是希伯来语的,但在编辑器下看起来是一样的和apears)
然后你可以像这样得到这个字段的值。。。
Inside the loop
<?php
$key="customField";
echo get_post_meta($post->ID, $key, true);
?>
Outside the loop
<?php
global $wp_query;
$postid = $wp_query->post->ID;
// mykey = field name
$key="customField";
$result = get_post_meta($postid, $key, true);
echo $result;
?>
<希望这有帮助。。。我会使用自定义帖子类型,但这是向帖子添加字段的简单方法
祝你好运,萨吉夫。