求个wp内容备注插件吗?比如在文章片头或片尾批量备注转自网络
有这样的WP插件吗? 直接用数据库插入不就行了 /* Add a paragraph only to Pages. */function my_added_page_content ( $content ) {
if ( is_page() ) {
return $content . '<p>Your content added to all pages (not posts).</p>';
}
return $content;
}
add_filter( 'the_content', 'my_added_page_content'); 这个不是很简单?你直接在内容模板找到内容标签。然后在他后面备注上你想要添加的文字,比如此文来自网络,不是完美解决问题啊
页:
[1]