web-dev-qa-db-ja.com

Wp_trim_excerptを使用してthe_excerpt()をループ外に出す

私はホームページ上に潜在的に数十の投稿の抜粋を表示する予定のテーマを作成しています。すべての投稿に手動の抜粋はありませんので、$post->post_excerptは多くの投稿で空です。手動の抜粋がない場合は、組み込みのget_the_excerpt()関数を使用したいのですが、ループ外では使用できません。

関数を辿っていくと、その場で抜粋を作成するためにwp-includes/format.phpからのwp_trim_excerptを使用しているように見えます。私はwp_trim_excerpt( $item->post_content )のように私のコードでそれを呼んでいます、しかしそれは単に全内容を返しています。私は何か悪いことをしていますか?

抜粋を作成するために独自の関数を作成できることは知っていますが、可能な場合は組み込み関数を使用し、自分のコードと他の潜在的なプラグイン/フィルターとの互換性を保ちたいと思います。

http://adambrown.info/p/wp_hooks/hook/wp_trim_excerpt?version=3.0&file=wp-includes/formatting.php

20
Derek Perkins

WP 3.3.0以降、wp_trim_words()は抜粋を生成したいコンテンツを取得できる場合に役立ちます。それが誰かに役立つことを願っています、そしてそれはあなた自身のワードカウント機能を作成することを節約します。

http://codex.wordpress.org/Function_Reference/wp_trim_words

21
jamesc

wp_trim_excerpt()はちょっと不思議な仕組みを持っています - 何かが渡されても何もしません。

その背後にある基本的なロジックは次のとおりです。

  • get_the_excerpt()は手動の抜粋をチェックします。
  • マニュアルの抜粋がない場合はwp_trim_excerpt()がチャイムインしてコンテンツまたはティーザーから作成します。

両方 は大域変数に密接に関係しているので、ループします。

ループの外では、wp_trim_excerpt()からコードを取り出してあなた自身のトリム関数を書くことの方が得策です。

8
Rarst

更新:

これは私が使ったwp_trim_excerpt()の派生物です。完璧に動作します。 Wordpressバージョン3.0.4から派生

function my_excerpt($text, $excerpt)
{
    if ($excerpt) return $excerpt;

    $text = strip_shortcodes( $text );

    $text = apply_filters('the_content', $text);
    $text = str_replace(']]>', ']]>', $text);
    $text = strip_tags($text);
    $excerpt_length = apply_filters('excerpt_length', 55);
    $excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
    $words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);
    if ( count($words) > $excerpt_length ) {
            array_pop($words);
            $text = implode(' ', $words);
            $text = $text . $excerpt_more;
    } else {
            $text = implode(' ', $words);
    }

    return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
}
6
Ardee Aram

これが、投稿オブジェクトまたは投稿IDをパラメータとして取る "trim_excerpt"です。

明らかに中核にあるものに基づいています。なぜこれ(およびget_the_author())にループ以外の同等物がないのかわからない。

/**
     * Generates an excerpt from the content, if needed.
     *
     * @param int|object $post_or_id can be the post ID, or the actual $post object itself
     * @param string $excerpt_more the text that is applied to the end of the excerpt if we algorithically snip it
     * @return string the snipped excerpt or the manual excerpt if it exists         
     */
    function zg_trim_excerpt($post_or_id, $excerpt_more = ' [...]') {
        if ( is_object( $post_or_id ) ) $postObj = $post_or_id;
        else $postObj = get_post($post_or_id);

        $raw_excerpt = $text = $postObj->post_excerpt;
        if ( '' == $text ) {
            $text = $postObj->post_content;

            $text = strip_shortcodes( $text );

            $text = apply_filters('the_content', $text);
            $text = str_replace(']]>', ']]>', $text);
            $text = strip_tags($text);
            $excerpt_length = apply_filters('excerpt_length', 55);

            // don't automatically assume we will be using the global "read more" link provided by the theme
            // $excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
            $words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);
            if ( count($words) > $excerpt_length ) {
                array_pop($words);
                $text = implode(' ', $words);
                $text = $text . $excerpt_more;
            } else {
                $text = implode(' ', $words);
            }
        }
        return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
    }
1
Tom Auger

上記の他の人の答えを使って、これはうまくいくように思われるより簡単な答えです:

global $post;

$excerpt = apply_filters('get_the_excerpt', get_post_field('post_excerpt', $post->ID));

if ( $excerpt == '' ) {
    $excerpt = wp_trim_words( $post->post_content, 55 );
}

私はOpenGraphの記述を定義するために関数の<meta>タグでそれを使っています。それで、私はただ加えます:

<meta property="og:description" content="<?php echo esc_html( $excerpt ); ?>" />
0
dpruth

$ more!= 0の場合、get_the_content()関数は全内容を返します。get_the_content()関数が抜粋を返すようにするには、グローバル変数$ moreを0に設定する必要があります。

Wp_trim_excerpt()関数を修正しました。

function wp_trim_excerpt($text) {
    $raw_excerpt = $text;
    if ( '' == $text ) {
        global $more;
        $tmp = $more;
        $more = 0;
        $text = get_the_content('');
        $more = $tmp;

        $text = strip_shortcodes( $text );

        $text = apply_filters('the_content', $text);
        $text = str_replace(']]>', ']]&gt;', $text);
        $text = strip_tags($text);
        $excerpt_length = apply_filters('excerpt_length', 55);
        $excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
        $words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);
        if ( count($words) > $excerpt_length ) {
            array_pop($words);
            $text = implode(' ', $words);
            $text = $text . $excerpt_more;
        } else {
            $text = implode(' ', $words);
        }
    }
    return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
}
0
user4742

ラストに+1。 get_the_excerpt($ post-> ID)のようなものがないことは非常に奇妙です。とにかく、これがwordpressバージョン3.0.4のwp_trim_excerpt()です。

http://core.trac.wordpress.org/browser/tags/3.0.4/wp-includes/formatting.php

function wp_trim_excerpt($text) {
1824            $raw_excerpt = $text;
1825            if ( '' == $text ) {
1826                    $text = get_the_content('');
1827    
1828                    $text = strip_shortcodes( $text );
1829    
1830                    $text = apply_filters('the_content', $text);
1831                    $text = str_replace(']]>', ']]&gt;', $text);
1832                    $text = strip_tags($text);
1833                    $excerpt_length = apply_filters('excerpt_length', 55);
1834                    $excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
1835                    $words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);
1836                    if ( count($words) > $excerpt_length ) {
1837                            array_pop($words);
1838                            $text = implode(' ', $words);
1839                            $text = $text . $excerpt_more;
1840                    } else {
1841                            $text = implode(' ', $words);
1842                    }
1843            }
1844            return apply_filters('wp_trim_excerpt', $text, $raw_excerpt);
1845    }

1826行目で、get_the_contentsによって$ postグローバル変数にリンクされていることがわかります。そして、はい、私は彼らが何を考えていたのかわかりません。しかし、ここから、あなた自身のmy_excerptのget_the_contentを$ textに置き換えれば、同様に振る舞うはずです。

0
Ardee Aram