About Sridhar Katakam
I am an independent WordPress web consultant with 10 years of experience in WordPress theme installation, customization, administration, maintenance, support, documentation, troubleshooting and PSD/design to WP.
Genesis and WordPress Tutorials
Session expired
Please log in again. The login page will open in a new tab. After logging in you can close it and return to this page.
Can we customize it with genesis ? To limit the lenght and show the read more button ? I use the genesis filter but nothing change. Note : I want to use this manual excerpt, because i use a CTP.
add_filter( 'excerpt_length', 'custom_excerpt_length' );
function custom_excerpt_length( $length ) {
return 10; }
add_filter('excerpt_more', 'new_excerpt_more');
function new_excerpt_more($more) {
return '... Lire la suite';
}
For complete control, I recommend using custom fields instead of using manual excerpts for Pages.
https://wordpress.org/plugins/advanced-custom-fields/