新增短代码 【cpe_views】
add_shortcode('cpe_views', 'cpe_views_shortcode');
function cpe_views_shortcode($atts) {
$atts = shortcode_atts(array('post_id' => 0), $atts, 'cpe_views');
$pid = (int) $atts['post_id'];
if (!$pid) { $pid = get_the_ID(); }
if (!$pid) { return ''; }
$views = number_format_i18n((int) get_post_meta($pid, 'post_views_count', true));
return '' . esc_html($views) . ' 浏览';
}
模板调用方法【cpe_views】







