Holy Family & CCTN - Orlando, FL

Group Ministries Template - Change the end of the excerpt from "[...]" to "..."

Assigned to
Kyle Sullivan, Web Development at Diocesan Kyle S.
Notes
Please change the ending of the excerpt from [...] to ... for the group ministries template. Thanks.
One example: https://holyfamilyorlando.diocesanweb.org/get-involved/prayer-spirituality/

Comments & Events

Kyle Sullivan, Web Development at Diocesan
The function/filter I normally use for this isn't working correctly. I've experimented with adjusting its priority, but I haven't found a working solution yet.

I'm moving this task to the WAIT category and will plan to complete it later.
Kyle Sullivan, Web Development at Diocesan
I updated the following code, and now this works correctly.
// Replace [...] with …
if( ! function_exists( 'new_excerpt_more' ) ) {
  function new_excerpt_more( $more ) {
    return '…<a href="'.get_the_permalink().'" class="readMoreLink" rel="nofollow">Continue Reading…</a>';
  }
  add_filter( 'excerpt_more', 'new_excerpt_more', 999 );
}
Kyle Sullivan, Web Development at Diocesan
Kyle Sullivan completed this to-do.