ID) . '">' . 'Read Article →' . ''; } add_filter('excerpt_more', 'new_excerpt_more'); #Excerpt Length function candour_excerpt_length( $length ) { return 45; } add_filter( 'excerpt_length', 'candour_excerpt_length', 999 ); # Site Title function candour_wp_title( $title, $sep ) { if ( is_feed() ) return $title; $title .= get_bloginfo( 'name' ); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title = "$title $sep $site_description"; return $title; } add_filter( 'wp_title', 'candour_wp_title', 10, 2 ); # No Title function candour_the_title ( $title ) { if ( in_the_loop() && ! is_page() ) { if ( ! $title ) $title = __( 'Untitled', 'candour' ); } return $title; } add_filter( 'the_title', 'candour_the_title' ); # Add Social Profile For Author /*-----------------------------*/ function candour_extend_author_profile( $authorfields ) { $authorfields['twitter'] = 'Twitter Username'; return $authorfields; } add_filter('user_contactmethods','candour_extend_author_profile'); # Comments Function (Do not Edit) /*-------------------------- */ if ( ! function_exists( 'candour_comment' ) ) : function candour_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; if ( 'pingback' == $comment->comment_type || 'trackback' == $comment->comment_type ) : ?>