如果你和我一样,使用 WordPress MU 做一个平台,比如我做的花生小店,需要限制每个博客的商品数量:
代码语言:javascript复制add_action('current_screen', function($current_screen){
global $pagenow;
if($pagenow == 'post-new.php'){
$post_type = $current_screen->post_type;
if($post_type == 'product'){ // 这里可以改成你需要限制的日志类型
$counts = wp_count_posts($post_type);
$total = array_sum((array)$counts);
if($total > 500){
wp_die('商品上限为:500。');
}
}
}
});
使用上面这段代码之后,再点击新增商品,就会出现: