PHP 插入自定义字段元

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 插入自定义字段元相关的知识,希望对你有一定的参考价值。

// This is designed to insert custom fields only on a certain post type, a custom type
// You can remove the if line and the endif lines and just leave the DIV for reg. posts
// Or you can check for a different condition instead. 
// Note the use of get_custom_field_value, another function used to easily retrieve custom values
// Add custom meta for custom post type "calendar"

function add_calendar_meta() { // we establish a name for our function
  	if( get_post_type() == 'calendar' ) :   ?> // we check for our conditions
		<div class="entry-meta">WHEN: <?php get_custom_field_value('eventdate', true); ?> <br /> WHERE: <?php the_terms($post->ID, 'location') ?> </div> 
	<?php endif;
}
add_action('headway_after_post_title','add_calendar_meta',1); //we actually insert our html/php into the theme.

以上是关于PHP 插入自定义字段元的主要内容,如果未能解决你的问题,请参考以下文章

php Real Homes:添加属性自定义元字段

php 设置高级自定义字段元框优先级。

PHP wordpress自定义帖子类型元框和字段

php 将复选框自定义元字段添加到媒体上传器wordpress

php 在帖子中添加元变量(自定义字段,ej template-slug)#wordpress

php 将自定义字段中的架构数据插入header.php