add_shortcode( \'show_total_listing_price\', \'show_total_listing_price\' );
function show_total_listing_price ( $atts ) {
global $post;
$args = array(
\'author\' => get_current_user_id(),
\'post_type\' => \'POST_TYPE_GOES_HERE\',
\'posts_per_page\' => -1,
\'post_status\' => \'publish\',
);
$query = new WP_Query( $args );
$total = 0;
if( $query->have_posts() ){
while( $query->have_posts() ){
$query->the_post();
$price = get_post_meta( $post->ID, \'PLACE_META_KEY_HERE\', true );
$total += $price;
}
}
wp_reset_postdata();
echo $total;
}
此代码有效!刚才有一个问题,因为我有两种类型的帖子与这个自定义帖子类型。还有一个名为“check\\u status”的meta\\u键,显示活动或挂起的属性。上面的代码将这两者结合起来。
需要修改它,以便只计算chech\\u status=\'1\'。