Excerpts length on Blog Grid is not correct
沒有依據<!–more–>來判斷
Hey Moaaaaya,
Thanks for reaching out to us!
Would you mind providing a precise link to your site, showing the elements in question? We need to be able to inspect them in order to help :)
Best regards,
Jordan
Hello.
on your sample page.
there are the same post,Why Excerpts length on blog-grid & blog-multi-author not the same?
Hey!
You can adjust the excerpt length of the grid layout with this filter.
add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
function avia_change_postgrid_excerpt_length($length)
{
$length = 100;
return $length;
}
Regards,
Ismael
Hello,
is it can use <!–more–> to decide how many words to show on Blog Grid?
like Blog Multi Author page.
您好,是否可能用文章編輯器的<!–more–>來設定文章列表中每篇文章要顯示多少文字?
Hi,
Did you try adding the code provided by ismale in functions.php ?
If you still have any issues please provide the login credentials so we can take a closer look.
Best regards,
Vinay
Hello, I want use <!–more–> to decide how many words to show on Blog Grid.
您好,我是不想要設定顯示幾個字,而是想要用 <!–more–> 來設定想要顯示的內容
Hi,
You can set excerpt length by using the code Ismael posted above.
Best regards,
Yigit
I see,
so it can not use <!–more–> tag to decide how many words to show on Blog Grid right?
only use ” $length = 100 (number); ” to set how many words to show on Blog Grid.
but “Blog Multi Author” could.