wordpress - Remove posts permalink (href) -
i trying figure out way remove permalink's posts category 'nolink'. have tried few java script attempts - have not managed work.
<?php query_posts( 'tag=client-list' ); while ( have_posts() ) : the_post(); echo '<ul class="client-thumb-wrap">'; echo '<a href="'; the_permalink(); echo '">'; echo '<li class="'; $category = get_the_category( $custompost ); echo $category[0]->cat_name ; echo ' '; echo $category[1]->cat_name ; echo ' '; echo $category[2]->cat_name ; echo ' '; echo $category[3]->cat_name ; echo '">'; echo '<img src="'; the_field('client_logo'); echo '">'; echo '</li>'; echo '</ul>'; endwhile; wp_reset_query(); ?>
has_term
allows check if post has specific term assigned (or not), try:
$href = ( has_term( 'nolink', 'category' ) ) ? '#' : get_permalink(); echo '<a href="' . $href . '">';