Genesis Child Theme: Post Excerpt With Read More

Ada sesiapa pengguna Genesis Theme?

Ni filter utk add excerpt dan link baca seterusnya. Tak sama untuk main theme. 

/** Customize Read More Text */
add_filter( 'excerpt_more', 'child_read_more_link' );
add_filter( 'get_the_content_more_link', 'child_read_more_link' );
add_filter( 'the_content_more_link', 'child_read_more_link' );
function child_read_more_link() {
 
return ' ... <a href="' . get_permalink() . '" rel="nofollow">[ BACA SETERUSNYA ]</a>';
}

Untuk main theme boleh tgk sini.