'; } } add_action( 'wp_head', 'beautytemple_pingback_header' ); function beautytemple_comment($comment, $args, $depth){ $output = null; $output = '
  • '; $output .= '
    '; $output .= ''; $output .= '
    '; $output .= '
    '.get_comment_author_link().''.get_comment_date().esc_html__(' at ','beautytemple') .get_comment_time().'
    '; if ( $comment->comment_approved == '0' ) { $output .= '' . esc_html__( 'Your comment is awaiting moderation.', 'beautytemple' ) . '
    '; } $output .= get_comment_text(); $output .= get_comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); $output .= '
    '; $output .= '
    '; echo $output; } if ( ! function_exists( 'beautytemple_get_option' ) ) { function beautytemple_get_option( $name, $default = false ) { $options = get_theme_mod( $name ); if ( isset( $options ) ) { return $options; }else{ return $default; } } } if ( ! function_exists( 'beautytemple_social' ) ) { function beautytemple_social(){ $social_mobile_links_instagram = beautytemple_get_option('social_links_instagram', false); $social_mobile_links_facebook = beautytemple_get_option('social_links_facebook', false); $social_mobile_links_vimeo = beautytemple_get_option('social_links_vimeo', false); $links = ''; if(beautytemple_get_option('social_links_display') == 'enable'){ echo wp_kses_post($links); } } } add_action('header_social_menu', 'beautytemple_social', 10); add_action('footer_social_menu', 'beautytemple_social', 20); add_action('sidemenu_social_menu', 'beautytemple_social', 30); if ( ! function_exists( 'beautytemple_footer_copyright' ) ) { function beautytemple_footer_copyright(){ $footer_copyright_text = beautytemple_get_option('footer_copyright', false); $footer_copyright = null; if(empty($footer_copyright_text)){ $footer_copyright = ''; $footer_copyright .= printf( esc_html__( 'Proudly powered by %s', 'beautytemple' ), 'WordPress' ); $footer_copyright .= ''; $footer_copyright .= ' | '; $footer_copyright .= printf( esc_html__( 'Theme: %1$s by %2$s', 'beautytemple' ), 'BeautyTemple', 'AwoThemes' ); }else{ $footer_copyright = '

    '.$footer_copyright_text.'

    '; } if(!empty($footer_copyright_text)){ echo wp_kses_post($footer_copyright); } } } add_action('footer_copyright', 'beautytemple_footer_copyright', 10); if ( ! function_exists( 'beautytemple_sidemenu_address' ) ) { function beautytemple_sidemenu_address() { $sidemenu_address = beautytemple_get_option( 'side_address', false ); $sidemenu_text = null; if ( !empty( $sidemenu_address ) ) { $sidemenu_text = '
    '; $sidemenu_text .= $sidemenu_address; $sidemenu_text .= '
    '; } else { $sidemenu_text = '
    '; $sidemenu_text .= '360 FULHAM ROAD, CHELSEA, LONDON, SW10 9UU'; $sidemenu_text .= '
    '; } echo wp_kses_post( $sidemenu_text ); } } add_action('sidemenu_address', 'beautytemple_sidemenu_address', 10);