![]() |
Second Opinion
Folosind serviciul second opinion ne puteți trimite RMN-uri, CT -uri, angiografii, fișiere .pdf, documente medicale. Astfel vă vom putea da o opinie neurochirurgicală, fără ca aceasta să poată înlocui un consult de specialitate. Răspunsurile vor fi date prin e-mail în cel mai scurt timp posibil (de obicei în mai putin de 24 de ore, dar nu mai mult de 48 de ore). Second opinion – Neurohope este un serviciu gratuit. www.neurohope.ro |
wordpress excerpt
Last Updated: Oct 06 2016 16:21, Started by
grobian
, Oct 05 2016 22:48
·
0

#1
Posted 05 October 2016 - 22:48

cum fac ca atunci cand chem excerptu', sa stabilesc si nr de caractere ?
stiu ca pot sa setez o limita in functions.php dar eu nu am nevoie de asta, vreau ca acolo unde il chem, sa stabilesc si caracterele nu reusesc sa gasesc |
#3
Posted 06 October 2016 - 00:06

5 Easy Ways To Limit Post Excerpt Length In WordPress http://smallenvelop....h-in-wordpress/
Edited by cristirg, 06 October 2016 - 00:06. |
#4
Posted 06 October 2016 - 16:21

am rezolvat cu
function grobian_excerpt_length( $length ) { return 220; } add_filter( 'excerpt_length', 'grobian_excerpt_length', 999 ); function grobian_string_limit_words($string, $word_limit) { $words = explode(' ', $string, ($word_limit + 1)); if(count($words) > $word_limit) { array_pop($words); } return implode(' ', $words); }in functions.php si <p><?php echo grobian_string_limit_words(get_the_excerpt(), 35); ?>…</p>acolo unde am nevoie de excerpt |
Anunturi
▶ 0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users