' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '
'; } ?>

'footer', 'container' => 'div', 'container_id' => 'footer-navigation', 'depth' => 1, 'fallback_cb' => false, 'echo' => false, ) ); // Copyright. $copyright_text = classifyed_get_option( 'copyright_text' ); $copyright_text = apply_filters( 'classifyed_filter_copyright_text', esc_html( $copyright_text ) ); ?>
| WEN Themes' ); ?>
ID, 'classifyed_theme_settings', true ); if ( isset( $post_options['post_layout'] ) && ! empty( $post_options['post_layout'] ) ) { $global_layout = $post_options['post_layout']; } } // Include sidebar. if ( 'no-sidebar' !== $global_layout ) { get_sidebar(); } if ( 'three-columns' === $global_layout ) { get_sidebar( 'secondary' ); } } endif; add_action( 'classifyed_action_sidebar', 'classifyed_add_sidebar' ); if ( ! function_exists( 'classifyed_custom_posts_navigation' ) ) : /** * Posts navigation. * * @since 1.0.0 */ function classifyed_custom_posts_navigation() { $pagination_type = classifyed_get_option( 'pagination_type' ); switch ( $pagination_type ) { case 'default': the_posts_navigation(); break; case 'numeric': if ( function_exists( 'wp_pagenavi' ) ) { wp_pagenavi(); } else { the_posts_pagination(); } break; default: break; } } endif; add_action( 'classifyed_action_posts_navigation', 'classifyed_custom_posts_navigation' ); if ( ! function_exists( 'classifyed_add_image_in_single_display' ) ) : /** * Add image in single post. * * @since 1.0.0 */ function classifyed_add_image_in_single_display() { global $post; if ( has_post_thumbnail() ) { $values = get_post_meta( $post->ID, 'classifyed_theme_settings', true ); $theme_settings_single_image = isset( $values['single_image'] ) ? esc_attr( $values['single_image'] ) : ''; $theme_settings_single_image_alignment = isset( $values['single_image_alignment'] ) ? esc_attr( $values['single_image_alignment'] ) : ''; if ( ! $theme_settings_single_image ) { $theme_settings_single_image = classifyed_get_option( 'single_image' ); } if ( ! $theme_settings_single_image_alignment ) { $theme_settings_single_image_alignment = classifyed_get_option( 'single_image_alignment' ); } if ( 'disable' !== $theme_settings_single_image ) { $args = array( 'class' => 'align' . esc_attr( $theme_settings_single_image_alignment ), ); the_post_thumbnail( esc_attr( $theme_settings_single_image ), $args ); } } } endif; add_action( 'classifyed_single_image', 'classifyed_add_image_in_single_display' ); if ( ! function_exists( 'classifyed_add_breadcrumb' ) ) : /** * Add breadcrumb. * * @since 1.0.0 */ function classifyed_add_breadcrumb() { // Bail if Breadcrumb disabled. $breadcrumb_type = classifyed_get_option( 'breadcrumb_type' ); if ( 'disabled' === $breadcrumb_type ) { return; } // Bail if plugin not active. // Bail if Home Page. if ( is_front_page() || is_home() ) { return; } echo ''; return; } endif; add_action( 'classifyed_action_before_content', 'classifyed_add_breadcrumb' , 7 ); if ( ! function_exists( 'classifyed_footer_goto_top' ) ) : /** * Go to top. * * @since 1.0.0 */ function classifyed_footer_goto_top() { $go_to_top = classifyed_get_option( 'go_to_top' ); if ( true !== $go_to_top ) { return; } echo ''; } endif; add_action( 'classifyed_action_after', 'classifyed_footer_goto_top', 20 ); if ( ! function_exists( 'classifyed_add_custom_header' ) ) : /** * Add Custom Header. * * @since 1.0.0 */ function classifyed_add_custom_header() { if ( ! get_header_image() ) { return; } ?>
<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>