gubka

Рейтинг
0
Регистрация
14.03.2018
croatoa:
Скоре всего в single.php надо искать, или в job_listing.php/job_listing-single.php если такие есть, комментарии (заголовок комментариев почему то называется Об авторе)

Вот код из single.php

<?php
get_header();
get_template_part('index','banner'); ?>
<!-- Blog Section Right Sidebar -->
<div class="page-builder">
<div class="container">
<div class="row">

<!-- Blog Area -->
<div class="<?php appointment_post_layout_class(); ?>" >
<?php
if(have_posts())
{
while(have_posts()) { the_post();
get_template_part('content',''); ?>
<!--Blog Author-->
<div class="comment-title"><h3><?php _e('About the author','appointment'); ?></h3></div>
<div class="blog-author">
<div class="media">
<div class="pull-left">
<?php echo get_avatar( get_the_author_meta( 'ID') , 200); ?>
</div>
<div class="media-body">
<h2> <?php the_author(); ?> <span> <?php $user = new WP_User( get_the_author_meta( 'ID' ) ); echo $user->roles[0];?> </span></h2>
<p><?php the_author_meta( 'description' ); //the_author_description(); ?> </p>
<ul class="blog-author-social">
<?php
$google_profile = get_the_author_meta( 'google_profile' );
if ( $google_profile && $google_profile != '' ) {
echo '<li class="googleplus"><a href="' . esc_url($google_profile) . '" rel="author"><i class="fa fa-google-plus"></i></a></li>';
}

$twitter_profile = get_the_author_meta( 'twitter_profile' );
if ( $twitter_profile && $twitter_profile != '' ) {
echo '<li class="twitter"><a href="' . esc_url($twitter_profile) . '"><i class="fa fa-twitter"></i></a></li>';
}

$facebook_profile = get_the_author_meta( 'facebook_profile' );
if ( $facebook_profile && $facebook_profile != '' ) {
echo '<li class="facebook"><a href="' . esc_url($facebook_profile) . '"><i class="fa fa-facebook"></i></a></li>';
}

$linkedin_profile = get_the_author_meta( 'linkedin_profile' );
if ( $linkedin_profile && $linkedin_profile != '' ) {
echo '<li class="linkedin"><a href="' . esc_url($linkedin_profile) . '"><i class="fa fa-linkedin"></i></a></li>';
}
$skype_profile = get_the_author_meta( 'skype_profile' );
if ( $skype_profile && $skype_profile != '' ) {
echo '<li class="skype"><a href="' . esc_url($skype_profile) . '"><i class="fa fa-skype"></i></a></li>';
}
?>
</ul>
</div>
</div>
</div>
<!--/Blog Author-->
<?php } comments_template('',true); } ?>
</div>
<!-- /Blog Area -->

<!--Sidebar Area-->
<div class="col-md-4">
<?php get_sidebar(); ?>
</div>
<!--Sidebar Area-->
</div>
</div>
</div>
<!-- /Blog Section Right Sidebar -->
<?php get_footer(); ?>

Как отсюда удалить инфу от авторе и надпись "обсуждение закрыто" ??? напомню http://cosmeticssouth.com/job/operator-1s-na-sklad/

Подскажите, как на http://cosmeticssouth.com/job/operator-1s-na-sklad/ убрать сообщение об авторе, внизу вакансии??? не могу понять где лежит этот кусок кода