我正在使用wordpress处理vbulletin 4.2。我需要wordpress页眉和页脚,因为我得到了一些关于url的教程: - http://bythegram.ca/2012/07/tutorials/wordpress-meets-vbulletin/我已经完成了对给定教程的修改,但没有取得成功。
The files are included in the vbulletin forum page but they are not showing on vbulletin.
Please help me out. Thanks in advance.
此致
答案 0 :(得分:1)
经过长时间的搜索,我得到了解决方案......而且我想与所有与vbulletin合作的人分享...
WordPress遇见vBulletin:
所以你有一个vBulletin论坛和一个WordPress网站,但他们彼此之间并不好玩。
本教程将通过整合您的视频,帮助您的vBulletin论坛看起来像您的WordPress网站 页眉,页脚和侧边栏(如果有的话)。
首先,如果你喜欢在WordPress工作,我很抱歉,这实际上更像是vBulletin插件/模板中的教程, 但不要担心这很容易。
第1步:
创建WP标头插件:
挂钩位置:global_start 标题:WP标题 执行顺序:5(或默认)
ob_start();
include('../wp-load.php');
include('../wp-content/themes/rt_iridium_wp/header2.php');
$globalWPHeader= ob_get_contents();
ob_end_clean();
$preRegister['globalWPHeader'] = $globalWPHeader;
vB_Template::preRegister('header', $preRegister);
解释:包括'../htdocs/wp-load.php';这条线正在寻找 对于'wp-load.php'文件,请根据您的更改位置 建立。包括(“../的htdocs /可湿性粉剂内容/主题/公报/ header.php文件”); 找到您的'header.php'文件,相应地更改位置。 $ wp_header = ob_get_contents();
将'header.php'内容分配给变量$ wp_header
编辑标题模板:
样式管理器 - 编辑模板 - 标题:
我确定你的标题模板看起来与我的有点不同 但这是你包括$ wp_header插件,它会插入你的 wordpress标题进入你的vBulletin论坛。
{vb:raw $ globalWPHeader}
通过admincp在vbulletin的模板标题中添加此行。
由于