如何在主页帖子中显示一半或一些Wordpress内容

时间:2014-07-08 15:08:22

标签: wordpress audio

嗨我有音频帖子格式我的帖子包含音频嵌入代码格式,在主页上显示音频播放器和文字说明,如下图所示。 enter image description here

我使用the_content();函数来显示整个内容。如何修改the_content();函数,直到只向我显示音频播放器,而不是向我显示文字说明。

有关信息,我使用下面的代码来修改内容字段,直到只显示我的主页中的音频播放器它的工作代码,但只显示音频链接,而不显示音频播放器等音频

$first_audio = '';
$output = preg_match_all('/http:\/\/.*\/(.*)\.(mp3|m4a|ogg)/',    get_post_field('post_content', $first_audio), $matches);
$first_audio = $matches[0][0];
echo '<br />';
echo $first_audio;

1 个答案:

答案 0 :(得分:0)

我在下面修改了此功能,以使用或从内容

获取单词数字摘录
function words_limit($string, $word_limit) {
    $words = explode(' ', $string, ($word_limit + 1));
    if(count($words) > $word_limit)
        array_pop($words);
    return implode(' ', $words);
}

// use : words_limit(get_the_excerpt(), 200);
// use : words_limit(get_the_content(), 200);