Z-Blog Wiki Z-Blog Wiki

Z-Blog官方文库

用户工具

站点工具


zblogphp:development:plugin:interfacestc:filter_plugin_viewpost_template

案例:给文章最后输出123字符

function ActivePlugin_ytecn() {
    Add_Filter_Plugin('Filter_Plugin_ViewPost_Template','ytecn_ViewPost_Template');
}
 
function ytecn_ViewPost_Template(&$template)
{
    global $zbp;
    $article = $template->GetTags('article');
    $article->Content = $article->Content."123";
    $template->SetTags('article', $article);
}

zblogphp/development/plugin/interfacestc/filter_plugin_viewpost_template.txt · 最后更改: 2020/11/27 18:20 由 唐朝