重命名“添加媒体”中的“展开详细信息”

时间:2016-01-24 作者:Gareth Bolton

我想知道是否可以通过“添加媒体”重命名“扩展详细信息”选项?我在网上找不到指南,所以我想在这里寻求指导(如果可能的话)。

非常感谢。

1 个回复
SO网友:jgraup

可以使用更改标签的输出jQuery 但我不确定除此之外最好的钩子是什么admin_footer.

// Collapse

var $open = jQuery(\'.acf-expand-details > .is-open\'), 
    $open_icon = $open.find(\'span\');

$open.html(\'MIN Details -->\');
$open.prepend($open_icon);

// Expand

var $close = jQuery(\'.acf-expand-details > .is-closed\'),
    $close_icon = $close.find(\'span\');

$close.html(\'<-- MAX Details\');
$close.prepend($close_icon);
<小时>
add_action( \'admin_enqueue_scripts\', \'admin_enqueue_scripts_replace_test\', 10 );

function admin_enqueue_scripts_replace_test() {
    wp_enqueue_script( \'jquery\' );
    add_action( \'admin_footer\', \'admin_footer_replace_test\', 10 );
}

function admin_footer_replace_test() {
    ?>
    <script>
        jQuery(document).ready(function () {
            // target frame
        });
    </script>
    <?php
}
你可能需要仔细阅读wp.media 看看WP Media Javascript Guide 用于检测帧事件。