Hi guys,
You recently provided me a javascript snippet to show page excerpts (see below). I am in the process of migrating my test site (where excerpts are still visible) to the new site on X version 4.6.4 which is where it is no longer working.REF http://www.hydroproduce.com.au/home
Hope you can help.
Cheers,
Claire : )
// Add Page excerpts
// =============================================================================
add_action( ‘init’, ‘x_add_page_excerpts’ );
function x_add_page_excerpts() {
add_post_type_support( ‘page’, ‘excerpt’ );
}
// =============================================================================