如何自动在 WordPress 上的每个 Post 内容中添加一些文本?

How to Put Some Text in every Post Content on WordPress Automatically?

我希望每个 Post 都必须在每个 Post Like 模板中包含此内容。例如:

我的 Post 标题:时间管理 Post内容:[各位朋友,我们的“Post-Title”文章怎么样了。你喜欢它吗?如果有任何疑问,请不要忘记在下面发表评论。有关“Post-Title”的更多文章,请订阅我们。]

我希望它自动放入文章末尾的每个 post 中。 请帮我。如果有人知道的话。

add_filter( 'the_content', 'filter_the_content_in_the_main_loop' );

function filter_the_content_in_the_main_loop( $content ) {

    // Check if we're inside the main loop in a single post page.
    if ( is_single() && in_the_loop() && is_main_query() ) {

       return esc_html__("So Friends, How is our Article of ".get_the_title().". Do You Like it? Don't Forget to Comment below if Any Queries. For More Article regarding ".get_the_title()." Subscribe Us.").$content;
    }

    return $content;
}