wordpress商城中如何修改已出售商品的数量?
设置如图:
创新互联坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都网站建设、网站建设、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的仪征网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
后台产品(Product)选中要修改的商品编辑(edit)找到Custom Fields修改total_sales
怎么样不使用插件让wordpress显示文章浏览量
把下面这段代码加在想显示文章浏览次数的位置(例如模板内的content.php)
?php setPostViews(get_the_ID()); echo getPostViews(get_the_ID()); ?
如果需要在列表页显示查看次数,那么建议在列表页需要显示查看次数的位置单独添加下面的代码
?php echo getPostViews(get_the_ID()); ?
把下面这段代码加在模板文件夹内的functions.php文件内
//统计文章浏览次数
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 查看";
}
return $count.' 查看';
}
function setPostViews($postID) {
$count_key = 'post_views_count';
$count = get_post_meta($postID, $count_key, true);
if($count==''){
$count = 0;
delete_post_meta($postID, $count_key);
add_post_meta($postID, $count_key, '0');
}else{
$count++;
update_post_meta($postID, $count_key, $count);
}
}
有用记得采纳哦!
如何有效防止wordpress被f5刷死
先判断下是否登录,然后获取当前用户对象,然后获取当前用户对象的信息,需要哪些用哪些:
if(is_user_logged_in()){
$current_user = wp_get_current_user();
/**
* @example Safe usage: $current_user = wp_get_current_user();
* if ( !($current_user instanceof WP_User) )
* return;
*/
echo 'Username: ' . $current_user-user_login . 'br /';
echo 'User email: ' . $current_user-user_email . 'br /';
echo 'User first name: ' . $current_user-user_firstname . 'br /';
echo 'User last name: ' . $current_user-user_lastname . 'br /';
echo 'User display name: ' . $current_user-display_name . 'br /';
echo 'User ID: ' . $current_user-ID . 'br /';
}
当前标题:wordpress刷量 wap刷量
文章位置:http://scgulin.cn/article/doipoij.html