gpt4 book ai didi

wordpress - Wordpress 中的全屏 iframe

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:50:56 25 4
gpt4 key购买 nike

我在 wordpress 上进行 SEO,我的目标是通过使用 iframe 将我的客户网页放在我的网页上来出租一个页面,但在 wordpress 中,如果我使用 iframe,工具栏和小部件将保留在那里。有没有办法隐藏所有内容并在我的顶部留下另一个网页?感谢您的宝贵时间。

最佳答案

请注意,使用 iframe 可能不会对 SEO 有太大帮助。通读this article .可能相关的内容:

iFrames are merely referencing the content, instead of duplicating it. When robots crawl the site and register the iframe tag, they will attribute the original source with any SEO credit instead of the page using the embedded content – i.e. the page with the iFrame.

也就是说:

要隐藏管理工具栏,请通过/wp-admin/profile.php 在您的个人资料中将其禁用。或者以编程方式(在 functions.php 中)使用类似以下内容执行此操作:

if (!is_admin) {
add_filter('show_admin_bar', '__return_false');
}

要删除小部件,请尝试按照 justintadlock.com 上的教程进行操作,在 functions.php 中添加如下内容:

add_filter( 'sidebars_widgets', 'disable_all_widgets' );

function disable_all_widgets( $sidebars_widgets ) {

$sidebars_widgets = array( false );

return $sidebars_widgets;
}

关于wordpress - Wordpress 中的全屏 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39403493/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com