>
'fa fa-facebook', 'link' => 'https://www.facebook.com/', ), array( 'font' => 'fa fa-twitter', 'link' => 'https://twitter.com/', ), array( 'font' => 'fa fa-youtube-play', 'link' => 'https://www.youtube.com/', ), array( 'font' => 'fa fa-instagram', 'link' => 'https://www.instagram.com/', ), array( 'font' => 'fa fa-google-plus-circle', 'link' => 'https://plus.google.com', ), array( 'font' => 'fa fa-odnoklassniki', 'link' => 'https://ok.ru/', ), array( 'font' => 'fa fa-vk', 'link' => 'https://vk.com/', ), array( 'font' => 'fa fa-xing', 'link' => 'https://www.xing.com/', ) ); if( empty( $social_links ) ){ $social_links = $preview_default_social_links; } } } ?> '; // added for accessibility purpose $home_sections = rara_business_get_home_sections(); if( !( is_front_page() && ! is_home() && $home_sections ) ){ ?>
'; } } endif; add_action( 'rara_business_content', 'rara_business_content_start' ); if( ! function_exists( 'rara_business_breadcrumb' ) ) : /** * Breadcrumbs */ function rara_business_breadcrumb() { global $post; $default_options = rara_business_default_theme_options(); // Get default theme options $breadcrumb_control = get_theme_mod( 'ed_breadcrumb', $default_options['ed_breadcrumb'] ); $post_page = get_option( 'page_for_posts' ); //The ID of the page that displays posts. $show_front = get_option( 'show_on_front' ); //What to show on the front page $delimiter = __( '>', 'rara-business' ); // delimiter between crumbs $home = get_theme_mod( 'home_text', $default_options['home_text'] ); // text for the 'Home' link $before = ''; // tag before the current crumb $after = ''; // tag after the current crumb $depth = 1; if( $breadcrumb_control ){ echo ''; } } endif; add_action( 'rara_business_before_posts_content', 'rara_business_breadcrumb', 15 ); if( ! function_exists( 'rara_business_page_header' ) ) : /** * Page Header */ function rara_business_page_header(){ global $wp_query, $post; echo ''; } endif; add_action( 'rara_business_before_posts_content', 'rara_business_page_header', 20 ); if( ! function_exists( 'rara_business_entry_header' ) ) : /** * Entry Header */ function rara_business_entry_header(){ $default_options = rara_business_default_theme_options(); // Get default theme options $hide_date = get_theme_mod( 'ed_post_date_meta', $default_options['ed_post_date_meta'] ); $hide_author = get_theme_mod( 'ed_post_author_meta', $default_options['ed_post_author_meta'] ); ?>
', '' ); }else{ the_title( '

', '

' ); } if( is_single() ) rara_business_categories(); ?>
'', ) ); }else{ the_excerpt(); } ?>
' . esc_html( $readmore ) . ''; } if( get_edit_post_link() ){ edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Edit %s', 'rara-business' ), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } ?>

%link
', esc_html__( 'Prev Post', 'rara-business' ) . '%title', false, '', 'category' ); $next = get_next_post_link( '', esc_html__( 'Next Post', 'rara-business' ) . '%title', false, '', 'category' ); if( $previous || $next ){?> false, 'before_page_number' => '' . __( 'Page', 'rara-business' ) . ' ', ) ); } } endif; add_action( 'rara_business_after_post_content', 'rara_business_pagination', 20 ); add_action( 'rara_business_after_posts_content', 'rara_business_pagination' ); add_action( 'rara_business_after_protfolio_post_content', 'rara_business_pagination', 20 ); if( ! function_exists( 'rara_business_related_posts' ) ) : /** * Related Posts */ function rara_business_related_posts(){ global $post; $default_options = rara_business_default_theme_options(); // Get default theme options $ed_related_post = get_theme_mod( 'ed_related', $default_options['ed_related'] ); $related_title = get_theme_mod( 'related_post_title', $default_options['related_post_title'] ); if( $ed_related_post ){ $args = array( 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => 4, 'ignore_sticky_posts' => true, 'post__not_in' => array( $post->ID ), 'orderby' => 'rand' ); $cats = get_the_category( $post->ID ); if( $cats ){ $c = array(); foreach( $cats as $cat ){ $c[] = $cat->term_id; } $args['category__in'] = $c; } $qry = new WP_Query( $args ); if( $qry->have_posts() ){ ?>
' . esc_html( $related_title ) . ''; ?>
have_posts() ){ $qry->the_post(); ?>
<?php the_title_attribute(); ?> ', '' ); ?>
'post', 'post_status' => 'publish', 'posts_per_page' => 4, 'ignore_sticky_posts' => true, 'post__not_in' => array( $post->ID ), 'orderby' => 'comment_count' ); $qry = new WP_Query( $args ); if( $qry->have_posts() ){ ?>
' . esc_html( $popular_title ) . ''; ?>
have_posts() ){ $qry->the_post(); ?>
<?php the_title_attribute(); ?> ', '' ); ?>
'post', 'posts_per_page' => 6, 'posts_status' => 'publish', 'ignore_sticky_posts' => true ); $qry = new WP_Query( $args ); if( $qry->have_posts() ){ ?>

have_posts() ){ $qry->the_post(); ?>
'; ?>