'loop-container', 'footer' => 'overflow-container', 'render' => 'ct_apex_infinite_scroll_render' ) ); load_theme_textdomain( 'apex', get_template_directory() . '/languages' ); register_nav_menus( array( 'primary' => __( 'Primary', 'apex' ) ) ); } } add_action( 'after_setup_theme', 'ct_apex_theme_setup', 10 ); if ( ! function_exists( ( 'ct_apex_register_widget_areas' ) ) ) { function ct_apex_register_widget_areas() { // after post content register_sidebar( array( 'name' => esc_html__( 'Primary Sidebar', 'apex' ), 'id' => 'primary', 'description' => esc_html__( 'Widgets in this area will be shown in the sidebar next to the main post content', 'apex' ), 'before_widget' => '', 'before_title' => '
'; $fields['url'] = '
'; return $fields; } } add_filter( 'comment_form_default_fields', 'ct_apex_update_fields' ); if ( ! function_exists( 'ct_apex_update_comment_field' ) ) { function ct_apex_update_comment_field( $comment_field ) { $comment_field = '
'; return $comment_field; } } add_filter( 'comment_form_field_comment', 'ct_apex_update_comment_field' ); if ( ! function_exists( 'ct_apex_remove_comments_notes_after' ) ) { function ct_apex_remove_comments_notes_after( $defaults ) { $defaults['comment_notes_after'] = ''; return $defaults; } } add_action( 'comment_form_defaults', 'ct_apex_remove_comments_notes_after' ); if ( ! function_exists( 'ct_apex_excerpt' ) ) { function ct_apex_excerpt() { global $post; $read_more_text = get_theme_mod( 'read_more_text' ); $show_full_post = get_theme_mod( 'full_post' ); $ismore = strpos( $post->post_content, '' ); if ( ( $show_full_post == 'yes' ) && ! is_search() ) { if ( $ismore ) { // Has to be written this way because i18n text CANNOT be stored in a variable if ( ! empty( $read_more_text ) ) { the_content( esc_html( $read_more_text ) . " " . esc_html( get_the_title() ) . "" ); } else { the_content( __( 'Continue reading', 'apex' ) . " " . esc_html( get_the_title() ) . "" ); } } else { the_content(); } } elseif ( $ismore ) { if ( ! empty( $read_more_text ) ) { the_content( esc_html( $read_more_text ) . " " . esc_html( get_the_title() ) . "" ); } else { the_content( __( 'Continue reading', 'apex' ) . " " . esc_html( get_the_title() ) . "" ); } } else { the_excerpt(); } } } if ( ! function_exists( 'ct_apex_excerpt_read_more_link' ) ) { function ct_apex_excerpt_read_more_link( $output ) { $read_more_text = get_theme_mod( 'read_more_text' ); if ( ! empty( $read_more_text ) ) { return $output . "
" . esc_html( $read_more_text ) . " " . esc_html( get_the_title() ) . "
"; } else { return $output . "" . __( 'Continue reading', 'apex' ) . " " . esc_html( get_the_title() ) . "
"; } } } add_filter( 'the_excerpt', 'ct_apex_excerpt_read_more_link' ); if ( ! function_exists( 'ct_apex_custom_excerpt_length' ) ) { function ct_apex_custom_excerpt_length( $length ) { $new_excerpt_length = get_theme_mod( 'excerpt_length' ); if ( ! empty( $new_excerpt_length ) && $new_excerpt_length != 25 ) { return $new_excerpt_length; } elseif ( $new_excerpt_length === 0 ) { return 0; } else { return 25; } } } add_filter( 'excerpt_length', 'ct_apex_custom_excerpt_length', 99 ); if ( ! function_exists( 'ct_apex_new_excerpt_more' ) ) { function ct_apex_new_excerpt_more( $more ) { $new_excerpt_length = get_theme_mod( 'excerpt_length' ); $excerpt_more = ( $new_excerpt_length === 0 ) ? '' : '…'; return $excerpt_more; } } add_filter( 'excerpt_more', 'ct_apex_new_excerpt_more' ); if ( ! function_exists( 'ct_apex_remove_more_link_scroll' ) ) { function ct_apex_remove_more_link_scroll( $link ) { $link = preg_replace( '|#more-[0-9]+|', '', $link ); return $link; } } add_filter( 'the_content_more_link', 'ct_apex_remove_more_link_scroll' ); if ( ! function_exists( 'ct_apex_featured_image' ) ) { function ct_apex_featured_image() { global $post; $featured_image = ''; if ( has_post_thumbnail( $post->ID ) ) { if ( is_singular() ) { $featured_image = '