' . __( 'Continue reading
', 'ari' ) . ''; } /** * Replaces "[…]" (appended to automatically generated excerpts) with an ellipsis and ari_continue_reading_link(). * * @since Ari 1.1.2 */ function ari_auto_excerpt_more( $more ) { return ' …' . ari_continue_reading_link(); } add_filter( 'excerpt_more', 'ari_auto_excerpt_more' ); /** * Adds a pretty "Continue Reading" link to custom post excerpts. * * @since Ari 1.1.2 */ function ari_custom_excerpt_more( $output ) { if ( has_excerpt() && ! is_attachment() ) { $output .= ari_continue_reading_link(); } return $output; } add_filter( 'get_the_excerpt', 'ari_custom_excerpt_more' ); /** * Adds custom classes to the array of body classes. * * @since Ari 1.1.2 */ function ari_body_classes( $classes ) { $options = ari_get_theme_options(); $current_color_scheme = $options['color_scheme']; // Adds a class of dark when the current color scheme is dark // Add current color scheme class. switch ( $current_color_scheme ) { case 'dark' : $classes[] = 'color-dark'; break; default : $classes[] = 'color-light'; break; } // Adds a class of group-blog to blogs with more than 1 published author if ( is_multi_author() ) $classes[] = 'group-blog'; // Adds a class of sidebar-content when the secondary sidebar is disabled if ( ! is_active_sidebar( 'sidebar-2' ) ) $classes[] = 'sidebar-content'; return $classes; } add_filter( 'body_class', 'ari_body_classes' ); /** * Filter in a link to a content ID attribute for the next/previous image links on image attachment pages * * @since Ari 1.1.2 */ function ari_enhanced_image_navigation( $url, $id ) { if ( ! is_attachment() && ! wp_attachment_is_image( $id ) ) return $url; $image = get_post( $id ); if ( ! empty( $image->post_parent ) && $image->post_parent != $id ) $url .= '#main'; return $url; } add_filter( 'attachment_link', 'ari_enhanced_image_navigation', 10, 2 ); /** * Filters wp_title to print a neat