Okay
  Public Ticket #1053178
Remove porfolio items from search results
Closed

Comments

  • Breno started the conversation

    Hello,

    Is there a way to remove porfolio items from search results?

    I tried to remove the following code from search.php, but it did not work:


    <?php }

    else if( get_post_type($post->ID) == 'portfolio' ){ ?>

    <article class="result">

    <div class="inner-wrap">

    <span class="bottom-line"></span>

    <?php if(has_post_thumbnail( $post->ID )) {

    echo '<a href="'.get_permalink().'">'.get_the_post_thumbnail($post->ID, 'full', array('title' => '')).'</a>'; 

    } ?>

    <h2 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <span><?php echo __('Portfolio Item', NECTAR_THEME_NAME); ?></span></h2>

    </div>

    </article><!--/search-result-->


  •  8,454


    ThemeNectar Support Team