php WordPress - Дружимвыводкороткойновостичерезget_the_excerptсзаписямисозданнымивKingComposer
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WordPress - Дружимвыводкороткойновостичерезget_the_excerptсзаписямисозданнымивKingComposer相关的知识,希望对你有一定的参考价值。
<?php
function.php:
/*Фильтр удаляющий шорт коды из короткой записи*/
add_filter( 'get_the_excerpt', 'shortcodetext_in_excerpt' );
function shortcodetext_in_excerpt( $excerpt ) {
$more = ' <a href="'. get_permalink( get_the_ID() ) . '">more...</a>';
$content = wp_trim_words( get_the_content(), 50, $more );
return preg_replace( '/\[[^\]]+\]/', '', $content );
}
место в шаблоне для вставки короткой записи:
/*Короткая запись без шорткодов */
<p><?php echo wp_strip_all_tags( get_the_excerpt(), true ); ?></p>
以上是关于php WordPress - Дружимвыводкороткойновостичерезget_the_excerptсзаписямисозданнымивKingComposer的主要内容,如果未能解决你的问题,请参考以下文章