最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

plugin-list-category-post custom fields

programmeradmin2浏览0评论

I'm using list category posts and would like to display several custom fields, but not all together.

I have used a template to display the list in a table, and have custom fields for country, county and town that I would like to display in individual cells. These are the only custom fields I will be using, so I can hard code the names in the template is necessary.

Thanks.

I'm using list category posts and would like to display several custom fields, but not all together.

I have used a template to display the list in a table, and have custom fields for country, county and town that I would like to display in individual cells. These are the only custom fields I will be using, so I can hard code the names in the template is necessary.

Thanks.

Share Improve this question asked Apr 3, 2012 at 13:53 mary hughesmary hughes 312 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can use get_post_meta(). This is the codex article: http://codex.wordpress/Function_Reference/get_post_meta

It sounds like each of the custom field values you want to display would only contain one result (one country, one town etc). In that case you'd use something like this in your template, wherever you want to display the value:

<?php if ( get_post_meta($post->ID, 'country', true) ) : ?>
    <?php echo get_post_meta($post->ID, 'country', true) ?>
<?php endif; ?>

Hope this helps, best of luck!

发布评论

评论列表(0)

  1. 暂无评论