我正在尝试将整个嵌入_页脚从WordPress嵌入式帖子中删除。
通过在functions.php中添加以下代码,我能够删除站点标题和注释图标。但是,分享的图标仍然存在。
add_filter('embed_site_title_html','__return_false');
remove_action( 'embed_content_meta', 'print_embed_comments_button' );有办法删除整个embed_footer吗?或者我可以删除共享按钮,也像上面的代码一样?
发布于 2022-02-01 03:09:10
“注释”按钮和“共享”按钮是在两个单独的默认操作中生成的,因此您必须同时删除它们:
remove_action( 'embed_content_meta', 'print_embed_comments_button' );
remove_action( 'embed_content_meta', 'print_embed_sharing_button' );发布于 2020-01-04 17:18:12
所有的javascript文件都嵌入在页脚中,如果您删除了页脚,那么您的站点可能会崩溃。有两种方式:
wp_footer();钩子。display: none;。https://wordpress.stackexchange.com/questions/355699
复制相似问题