在任意位置插入小工具 wordpress主题修改 让主题支持小工具
- font size decrease font size increase font size
- Print Email
输入以下代码到 /wp-content/theme/themename/functions.php 如果没有可以自己手动创建一个。
<?php if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => '边栏1', // 侧边栏 1 的名称 'before_widget' => '<li>', // widget 的开始标签 'after_widget' => '</li>', // widget 的结束标签 'before_title' => '<h3>', // 标题的开始标签 'after_title' => '</h3>'// 标题的结束标签 )); register_sidebar(array( 'name' => '边栏2', // 侧边栏 2 的名称 'before_widget' => '<li>', // widget 的开始标签 'after_widget' => '</li>', // widget 的结束标签 'before_title' => '<h3>', // 标题的开始标签 'after_title' => '</h3>'// 标题的结束标签 )); register_sidebar(array( 'name' => '边栏3', // 侧边栏 3 的名称 'before_widget' => '<li>', // widget 的开始标签 'after_widget' => '</li>', // widget 的结束标签 'before_title' => '<h3>', // 标题的开始标签 'after_title' => '</h3>'// 标题的结束标签 )); register_sidebar(array( 'name' => '边栏4', // 侧边栏 4 的名称 'before_widget' => '<li>', // widget 的开始标签 'after_widget' => '</li>', // widget 的结束标签 'before_title' => '<h3>', // 标题的开始标签 'after_title' => '</h3>'// 标题的结束标签 )); } ?>
1之后我们只需要在想要添加小工具的地方数据以下代码。2
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('边栏名称3')): ?> <?php endif;
?>3
Last modified onSunday, 23 December 2012 14:45
Notice: Only variables should be assigned by reference in /var/www/vhosts/shan.info/httpdocs/templates/gk_publisher/html/com_k2/templates/default/item.php on line 478
back to top