我从t31os 这让我有机会在wordpress中添加图片时隐藏字段和按钮。
function myAttachmentFields($form_fields, $post) {
// Can now see $post becaue the filter accepts two args, as defined in the add_fitler
if ( substr( $post->post_mime_type, 0, 5 ) == \'image\' ) {
$form_fields[\'image_alt\'][\'value\'] = \'\';
$form_fields[\'image_alt\'][\'input\'] = \'hidden\';
$form_fields[\'post_excerpt\'][\'value\'] = \'\';
$form_fields[\'post_excerpt\'][\'input\'] = \'hidden\';
$form_fields[\'post_content\'][\'value\'] = \'\';
$form_fields[\'post_content\'][\'input\'] = \'hidden\';
$form_fields[\'url\'][\'value\'] = \'\';
$form_fields[\'url\'][\'input\'] = \'hidden\';
$form_fields[\'align\'][\'value\'] = \'aligncenter\';
$form_fields[\'align\'][\'input\'] = \'hidden\';
$form_fields[\'image-size\'][\'value\'] = \'thumbnail\';
$form_fields[\'image-size\'][\'input\'] = \'hidden\';
$form_fields[\'image-caption\'][\'value\'] = \'caption\';
$form_fields[\'image-caption\'][\'input\'] = \'hidden\';
$form_fields[\'buttons\'] = array(
\'label\' => \'\',
\'value\' => \'\',
\'input\' => \'html\'
);
$filename = basename( $post->guid );
$attachment_id = $post->ID;
if ( current_user_can( \'delete_post\', $attachment_id ) ) {
if ( !EMPTY_TRASH_DAYS ) {
$form_fields[\'buttons\'][\'html\'] = "<a href=\'" . wp_nonce_url( "post.php?action=delete&post=$attachment_id", \'delete-attachment_\' . $attachment_id ) . "\' id=\'del[$attachment_id]\' class=\'delete\'>" . __( \'Delete Permanently\' ) . \'</a>\';
} elseif ( !MEDIA_TRASH ) {
$form_fields[\'buttons\'][\'html\'] = "<a href=\'#\' class=\'del-link\' onclick=\\"document.getElementById(\'del_attachment_$attachment_id\').style.display=\'block\';return false;\\">" . __( \'Delete\' ) . "</a>
<div id=\'del_attachment_$attachment_id\' class=\'del-attachment\' style=\'display:none;\'>" . sprintf( __( \'You are about to delete <strong>%s</strong>.\' ), $filename ) . "
<a href=\'" . wp_nonce_url( "post.php?action=delete&post=$attachment_id", \'delete-attachment_\' . $attachment_id ) . "\' id=\'del[$attachment_id]\' class=\'button\'>" . __( \'Continue\' ) . "</a>
<a href=\'#\' class=\'button\' onclick=\\"this.parentNode.style.display=\'none\';return false;\\">" . __( \'Cancel\' ) . "</a>
</div>";
} else {
$form_fields[\'buttons\'][\'html\'] = "<a href=\'" . wp_nonce_url( "post.php?action=trash&post=$attachment_id", \'trash-attachment_\' . $attachment_id ) . "\' id=\'del[$attachment_id]\' class=\'delete\'>" . __( \'Move to Trash\' ) . "</a><a href=\'" . wp_nonce_url( "post.php?action=untrash&post=$attachment_id", \'untrash-attachment_\' . $attachment_id ) . "\' id=\'undo[$attachment_id]\' class=\'undo hidden\'>" . __( \'Undo\' ) . "</a>";
}
}
else {
$form_fields[\'buttons\'][\'html\'] = \'\';
}
}
return $form_fields;
}
// Hook on after priority 10, because WordPress adds a couple of filters to the same hook - added accepted args(2)
add_filter(\'attachment_fields_to_edit\', \'myAttachmentFields\', 11, 2 );
但有一件事是
Use as featured image 链接未出现。有人对我如何显示链接有想法吗
Use as featured image 删除链接旁边?这是这个伟大的脚本中唯一缺少的东西,但我不是一个php专家,我试图找出它,但没有找到soluiton。谢谢你的帮助。
当做