コンテンツのショートコードがあります。このショートコードは、フロントエンドの私の投稿にいくつかのことをまとめたものです。
ただし、フィードを見ると、のコンテンツはショートコードのコンテンツを完全に除外しており、ショートコードのコンテンツの後から始まるだけです。
ショートコードの外側のコンテンツを使用すると、
ショートコードのコンテンツがフィードの説明に表示されないのはなぜですか。私がショートコードを紹介する前にそれはとてもうまくいった!
私はここで同様の問題を解決策なしで見つけました: http://wordpress.org/support/topic/execute-shortcodes-in-feed-content
更新:だから私はショートコードがwordpressによって取り除かれていることをちょうど読んだ。どうすればこの動作を防ぐことができますか?
私はこれを試してみましたが、幸運なことに the_excerptとshortcodes
[OK]を私はそのような私自身のカスタム抜粋を書かなければなりませんでした:
function custom_excerpt($text = '') {
$raw_excerpt = $text;
if ( '' == $text ) {
$text = get_the_content('');
// $text = strip_shortcodes( $text );
$text = do_shortcode( $text );
$text = apply_filters('the_content', $text);
$text = str_replace(']]>', ']]>', $text);
$excerpt_length = apply_filters('excerpt_length', 200);
$excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
$text = wp_trim_words( $text, $excerpt_length, $excerpt_more );
}
return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
}
remove_filter( 'get_the_excerpt', 'wp_trim_excerpt' );
add_filter('get_the_excerpt', 'custom_excerpt');