'; } } add_action( 'wp_head', 'pt_magazine_pingback_header' ); if ( ! function_exists( 'pt_magazine_footer_goto_top' ) ) : /** * Add Go to top. * * @since 1.0.0 */ function pt_magazine_footer_goto_top() { echo ''; } endif; add_action( 'wp_footer', 'pt_magazine_footer_goto_top' ); if ( ! function_exists( 'pt_magazine_implement_excerpt_length' ) ) : /** * Implement excerpt length. * * @since 1.0.0 * * @param int $length The number of words. * @return int Excerpt length. */ function pt_magazine_implement_excerpt_length( $length ) { $excerpt_length = pt_magazine_get_option( 'blog_excerpt_length' ); if ( absint( $excerpt_length ) > 0 ) { $length = absint( $excerpt_length ); } return $length; } endif; if ( ! function_exists( 'pt_magazine_implement_read_more' ) ) : /** * Implement read more in excerpt. * * @since 1.0.0 * * @param string $more The string shown within the more link. * @return string The excerpt. */ function pt_magazine_implement_read_more( $more ) { $output = $more; $read_more = pt_magazine_get_option( 'blog_read_more' ); $read_more_text = pt_magazine_get_option( 'blog_read_more_text' ); if ( ! empty( $read_more_text ) ) { if( 1 !== absint( $read_more ) ){ $output = '…'; }else{ $output = '…

' . esc_html( $read_more_text ) . '

'; } } return $output; } endif; if ( ! function_exists( 'pt_magazine_hook_read_more_filters' ) ) : /** * Hook read more and excerpt length filters. * * @since 1.0.0 */ function pt_magazine_hook_read_more_filters() { if ( is_home() || is_category() || is_tag() || is_author() || is_date() || is_search() ) { add_filter( 'excerpt_length', 'pt_magazine_implement_excerpt_length', 999 ); add_filter( 'excerpt_more', 'pt_magazine_implement_read_more' ); } } endif; add_action( 'wp', 'pt_magazine_hook_read_more_filters' ); if ( ! function_exists( 'pt_magazine_add_sidebar' ) ) : /** * Add sidebar. * * @since 1.0.0 */ function pt_magazine_add_sidebar() { $global_layout = pt_magazine_get_option( 'global_layout' ); $global_layout = apply_filters( 'pt_magazine_filter_theme_global_layout', $global_layout ); // Include sidebar. if ( 'no-sidebar' !== $global_layout ) { get_sidebar(); } } endif; add_action( 'pt_magazine_action_sidebar', 'pt_magazine_add_sidebar' );