php 此函数返回posttype的post count视图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 此函数返回posttype的post count视图相关的知识,希望对你有一定的参考价值。

/*
 * This function returns the post count views of a posttype
 */
getPostViews($postID);

function getPostViews($postID) {
    $count_key = 'post_views_count';
    $count = get_post_meta($postID, $count_key, true);
    if ($count == '') {
        delete_post_meta($postID, $count_key);
        add_post_meta($postID, $count_key, '0');
        return "0 View";
    } elseif ($count == 1) {
        return "1 View";
    }
    return $count . ' Views';
}

以上是关于php 此函数返回posttype的post count视图的主要内容,如果未能解决你的问题,请参考以下文章

php WordPress重定向自定义Posttype

php Agregar columna en posttype

wordpress调用自定义post_type文章

为自定义帖子类型创建存档:wordpress

PHP - 错误ASCII = 16状态= 0输入中的意外字符

php正则实现表单验证