在wordpress中给文章加题图(4)
WordPress 04月 21st. 2008, 11:33am之后要做的,就是对模板的修改。在wordpress的后台点“外观”,再点主题编辑器,先来编辑首页,点“主页面模板”。
如下这段内容,应该是正文之前的部分:
<div class=”post-content”>
<?php the_content(’Read the rest of this entry »’); ?>
</div>
找到这段,在他的前边增加上:
<?PHP
echo get_post_meta($post->ID, “titlelogo”, $single=true);
?>
这时发表上去的文章,在文章开始之前,会看到你在这个自定义字段里边填写的值,例如apache,php,mysql,wordpress之类的。