0

我想显示两列,右栏充满 google adsense。如何更改 wordpress 主题中页面的默认一列布局?

4

1 回答 1

1

您必须编辑 functions.php 文件,然后手动将区域和新侧边栏添加到您希望执行此操作的区域的页面中。

所以可以说它是 index.php

您将打开 functions.php 文件,然后添加此代码

在管理员中创建小部件和侧边栏部分

if ( function_exists('register_sidebar') )
register_sidebar(array('name'=>'YOUR NEW SIDEBAR',
'before_widget' => '<div class="block">',
'after_widget' => '</div><div class="blockfooter"></div>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));

然后,您将此部分添加到您想要添加的区域中的页面中。用 Div 等设置样式,或者你需要它完成。

<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('YOUR NEW SIDEBAR')); ?>

让我知道这有帮助

于 2012-07-30T00:53:01.343 回答