2017-01-30 54 views
2

我不明白爲什麼我的代碼不能在我的WordPress主題中工作。 對於限摘錄長度字符我在文件中添加此的functions.php:WordPress限制摘錄長度字符不起作用

function va_custom_excerpt_length() { 
    return 20; 
} 
add_filter('excerpt_length', 'va_custom_excerpt_length', 999); 

,這在home.php

<div class="article-ex"> 
    <?php the_excerpt(); ?> 
</div> 

此代碼返回所有的提取物,而不是20個字符

TY幫助很大。 文森特

+0

檢查這個http://wordpress.stackexchange.com/questions/139953/excerpt-length-not-working,它可能幫你。 –

+0

你的代碼是完美的。您需要對最後一個參數進行一次更改。將999替換爲1. –

+0

非常感謝您的回答 –

回答

0

您還可以通過PHP字符串函數做...

$string = get_the_content(); 
$newString = substr($string, 0, 20); 
echo $newString;