之后要做的,就是对模板的修改。在wordpress的后台点“外观”,再点主题编辑器,先来编辑首页,点“主页面模板”。
如下这段内容,应该是正文之前的部分:

<div class=”post-content”>
  <?php the_content(’Read the rest of this entry &raquo;’); ?>
</div>

找到这段,在他的前边增加上:
<?PHP
echo get_post_meta($post->ID, “titlelogo”, $single=true);
?>

这时发表上去的文章,在文章开始之前,会看到你在这个自定义字段里边填写的值,例如apache,php,mysql,wordpress之类的。