以下の内容はhttps://blog.systemjp.net/entry/2016/06/27/105352より取得しました。


WordPress:RSSフィードにmoreタグを入れた箇所までの内容だけを出力

WordPress:RSSフィードにmoreタグを入れた箇所までの内容だけを出力

function.phpに以下を追加します。

function my_content_feeds($content) {
    global $post, $more;
    $more = false;
    $content = apply_filters('the_content', get_the_content(''));
    $content = str_replace(']]>', ']]>', $content);
    return $content;
}
add_filter('the_excerpt_rss', 'my_content_feeds');
add_filter('the_content_feed', 'my_content_feeds');

ネタ元




以上の内容はhttps://blog.systemjp.net/entry/2016/06/27/105352より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14