在另一位开发人员的帮助下,我为自定义短代码创建了以下内容:
add_shortcode( 'children' , 'display_custom_post_type_v1' );
function display_custom_post_type_v1($atts) {
$atts = shortcode_atts( array(
'category' => ''
), $atts );
$categories = explode(',' , $atts['category']);
$args = array(
'post_type' => 'children',
'post_status' => 'publish',
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page'=> -1,
'tax_query' => array( array(
'taxonomy' => 'category',
'field' => 'term_id',
'operator' => 'AND',
'terms' => $categories
) )
);
$string = '';
$query = new WP_Query( $args );
if( ! $query->have_posts() ) {
return false;
}
while( $query->have_posts() ){
$query->the_post();
$string .= '<div id="childWrapper"><div id="childImage"><a href="' . get_permalink() . '">' . get_the_post_thumbnail() . '</a></div><div style="clear: both;"></div><div id="childName">' . get_the_title() . '</div><div style="clear: both;"></div></div>';
}
wp_reset_postdata();
return $string;
}
到目前为止,这对我的应用程序非常有效,但还有一个我想要包含的项目。这些自定义帖子类型包括元框(自定义字段),我想在输出中包含它。通常我使用类似的东西:
<?php echo get_post_meta( $post->ID, '_cd_birthdate', true ); ?>
但我无法弄清楚如何将它包含在短代码的输出中。我试过这一行,但只显示div区域,但没有内容:
<div>' . get_post_meta( $post->ID, '_cd_birthdate', true ) . '</div>
任何建议都将不胜感激。
答案 0 :(得分:0)
我认为'$ post-&gt; ID,'仅在WP循环中有效。请尝试'get_the_ID()'。
...一样
<div>' . get_post_meta( get_the_ID(), '_cd_birthdate', true ) . '</div>
请参阅this