Z-Blog Wiki Z-Blog Wiki

Z-Blog官方文库

用户工具

站点工具


zblogphp:development:plugin:interfacestc:filter_plugin_delcategory_succeed

案例(删除当前分类后,自动发布一篇文章):

function ActivePlugin_tc_cs() {
    Add_Filter_Plugin('Filter_Plugin_DelCategory_Succeed','ytecn_delcategory_succeed');
}
 
function ytecn_delcategory_succeed($cate) {
    $article = new Post();
    $article->Title="删除分类".$cate->name;
    $article->Save();
}

zblogphp/development/plugin/interfacestc/filter_plugin_delcategory_succeed.txt · 最后更改: 2020/07/29 11:32 由 唐朝