首先,很抱歉我的英语不好!我试图在产品页面(编辑模式)上隐藏#mceu\\u 27-body和#wp内容编辑器工具,就像某些作者的图片一样!这项工作发现:
add_action(\'admin_head\', \'wwc_my_custom_css\');
if (!current_user_can(\'edit_pages\') ) {
function wwc_my_custom_css() {
echo \'<style>
#mceu_27-body, #wp-content-editor-tools{
display:none !important;
}
</style>\';}
}
但它会影响所有帖子类型,我只想在产品帖子类型上使用它,所以我尝试了一下,但不起作用:
add_action(\'admin_head\', \'wwc_my_custom_css\');
if (!current_user_can(\'edit_pages\') && is_product() )
function wwc_my_custom_css() {
echo \'<style>
#mceu_27-body, #wp-content-editor-tools{
display:none !important;
}
</style>\';}
}
Thx公司