Sử dụng strip_tags để cắt chuỗi string, the_excerp, the_content giữ lại thẻ và không full (ok)

https://developer.wordpress.org/reference/functions/wp_strip_all_tags/

Ví dụ 1: Loại thẻ khỏi nội dung

$quote = substr(strip_tags(block_sub_value('quote')), 0 ,80);
$quote_full = substr(strip_tags(block_sub_value('quote-full')), 0 ,510);

Ví dụ 2: Loại thẻ khỏi nội dung

$excerpt = get_the_excerpt(); 
$excerpt = substr( $excerpt, 0, 260 ); // Only display first 260 characters of excerpt
$result = substr( $excerpt, 0, strrpos( $excerpt, ' ' ) );
echo $result;

Ví dụ 3: Giữ lại thẻ trong nội dung

$content = get_the_content();
$content= substr($content, 0, 260);
$result = substr($content, 0, strrpos($content, ' '));
echo $result;
?>

Đọc thêm: https://app.gitbook.com/@wordpress-lionel/s/project/how-to-remove-header-tags-and-their-content-in-wordpress-excerpt-ok

Last updated