我已经尝试更新插件中的模板一个小时了,但是没有成功。
我正在编辑的模板是showthread_newreply-但是代码也无法在标头模板中工作。
<a href="newreply.php?tid={$tid}" class="button new_reply_button"><span>{$lang->new_reply}</span></a>
我想使用以下代码在“新回复”锚点后添加一个按钮:
function myplugin_activate() {
require_once MYBB_ROOT."/inc/adminfunctions_templates.php";
find_replace_templatesets(
"showthread_newreply",
"#" . preg_quote('</a> ') . "#i",
'</a> <button>My Button</button>'
);
}
我的插件文件名为myplugin.php,我知道在激活该插件时应该更改模板,就像在该函数中一样。
它不起作用。 我尝试了许多其他组合,更改了模板,更改了要搜索和替换的内容...
致谢。