如何在我的自定义插件中隐藏媒体菜单项? (WordPress)
How to hide media menu items in my custom plugin? (Wordpress)
如何隐藏广场中的物品?这是在自定义插件中。
Click here
您可以为此创建插件(即删除附件)。以下是根据您的要求创建插件的步骤:
1) 在 wp-content/plugin 中创建一个文件夹(即删除附件归档)
2) 在新创建的文件夹中使用以下代码创建一个文件(即 remove_attachment_details.php)。
3) 从 Admin >> Plugins 激活插件
<?php
/*
Plugin Name: Remove attachment filed
*/
add_action('admin_head-post.php', 'hide_media_stuff_wpse_120894' );
add_action('admin_head-post-new.php', 'hide_media_stuff_wpse_120894' );
function hide_media_stuff_wpse_120894(){
?>
<style type="text/css">
.attachment-details [data-setting="title"],
.attachment-details [data-setting="caption"],
.attachment-details [data-setting="alt"],
.attachment-details [data-setting="description"],
div.attachment-display-settings
{
display:none
}
</style>
<?php
}
?>
如何隐藏广场中的物品?这是在自定义插件中。
Click here
您可以为此创建插件(即删除附件)。以下是根据您的要求创建插件的步骤:
1) 在 wp-content/plugin 中创建一个文件夹(即删除附件归档)
2) 在新创建的文件夹中使用以下代码创建一个文件(即 remove_attachment_details.php)。
3) 从 Admin >> Plugins 激活插件
<?php
/*
Plugin Name: Remove attachment filed
*/
add_action('admin_head-post.php', 'hide_media_stuff_wpse_120894' );
add_action('admin_head-post-new.php', 'hide_media_stuff_wpse_120894' );
function hide_media_stuff_wpse_120894(){
?>
<style type="text/css">
.attachment-details [data-setting="title"],
.attachment-details [data-setting="caption"],
.attachment-details [data-setting="alt"],
.attachment-details [data-setting="description"],
div.attachment-display-settings
{
display:none
}
</style>
<?php
}
?>