代码之家  ›  专栏  ›  技术社区  ›  Dhrubajyoti Dutta

在wordpress帖子中添加默认代码

  •  0
  • Dhrubajyoti Dutta  · 技术社区  · 6 年前

    我想在默认情况下为所有新帖子添加一个简单的代码 我试图在中使用此代码。作用php(WP初学者)

    add_filter( 'default_content', 'my_editor_content' );
        function my_editor_content( $content ) {
            $content = "If you like this post, then please consider retweeting it or sharing it on Facebook.";
            return $content;
        }
    

    我正在使用名为 极限短代码 代码:

    [su_spoiler title="Download The File" style="fancy" icon="chevron-circle"]Here[/su_spoiler]
    

    我尝试正常使用简单的html和CSS代码,但在这两种情况下都显示相同的错误

    https://i.stack.imgur.com/wgAs4.png

    1 回复  |  直到 6 年前
        1
  •  1
  •   Deepti chipdey    6 年前

    尝试此操作-:将代码包装为单引号,因为您已经在使用双引号。

    add_filter( 'default_content', 'my_editor_content' );
    function my_editor_content( $content ) {
        $content = '[su_spoiler title="Download The File" style="fancy" icon="chevron-circle"]Here[/su_spoiler]';
        return $content;
    }