为WordPress媒体文件添加重新关联附加选项 – WordPress 教程

2022年 10月 24日 发表评论
腾讯云正在大促:点击直达 阿里云超级红包:点击领取
免费/便宜/高性价比服务器汇总入口(已更新):点击这里了解

为WordPress媒体文件添加重新关联附加选项 – WordPress 教程
WordPress

WordPress允许您将一个媒体文件关联附加到一篇文章,但默认不能修改关联,本教程将添加一个可以修改媒体文件关联附加的选项。

将下面代码添加到当前主题的 functions.php 文件:

add_filter("manage_upload_columns", 'upload_columns');add_action("manage_media_custom_column", 'media_custom_columns', 0, 2);function upload_columns($columns) {    unset($columns['parent']);    $columns['better_parent'] = "Parent";    return $columns;}function media_custom_columns($column_name, $id) {    $post = get_post($id);    if($column_name != 'better_parent')        return;        if ( $post->post_parent > 0 ) {            if ( get_post($post->post_parent) ) {                $title =_draft_or_post_title($post->post_parent);            }            ?>            <strong><a href="<?php echo get_edit_post_link( $post->post_parent ); ?>"><?php echo $title ?></a></strong>, <?php echo get_the_time(__('Y/m/d')); ?>            <br />            <a class="hide-if-no-js" onclick="findPosts.open('media[]','<?php echo $post->ID ?>');return false;" href="#the-list"><?php _e('Re-Attach'); ?></a>            <?php        } else {            ?>            <?php _e('(Unattached)'); ?><br />            <a class="hide-if-no-js" onclick="findPosts.open('media[]','<?php echo $post->ID ?>');return false;" href="#the-list"><?php _e('Attach'); ?></a>            <?php        }}

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: