是否有一种方法(插件)将html / css / images等自动插入到每个wordpress帖子中?

时间:2012-07-27 16:30:42

标签: wordpress-plugin wordpress-theming wordpress

有没有办法(插件)将html / css / images等自动插入每个wordpress帖子?我的大多数帖子都会非常相似,所以有一个插件会自动在每个帖子中插入预先写好的html / css / ect,而不是每次都手动输入。

提前谢谢你; - )

2 个答案:

答案 0 :(得分:1)

您可以为此编写自己的简单函数,请参阅下面的示例:

add_filter( 'default_content', 'my_editor_content' );

function my_editor_content( $content ) {
    global $post_type;
    if( $post_type == 'post') { /* Or your custom post type, pages etc. */
        $content = 'Your custom HTML/CSS content here';
    }
    return $content;
}

将其放在functions.php中,它将是您创建的每个新帖子/页面/自定义帖子类型的默认内容。

有关可用帖子类型的列表,请参阅 Codex

答案 1 :(得分:0)

您可以使用广告注入等插件,它可以让您无需更改/修改/广告模​​板或文件的任何代码即可完成所需操作

相关问题