您不能修改核心函数的输出,但可以通过将其从embed_footer
并使用自定义输出添加您自己的函数:
remove_action( \'embed_footer\', \'print_embed_sharing_dialog\' );
add_action( \'embed_footer\', \'my_custom_sharing_dialog\', 9 );
function my_custom_sharing_dialog() {
// write your own dialog html here
}
(我将其添加回优先级为9,以确保在
print_embed_scripts
.)