如何为链接的网址而不是当前网页设置if / else条件?
我在使用此代码的第4行时遇到问题:
$args = array( 'post_type' => 'studies', 'posts_per_page' => 4 );
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
**if(url=the page I want to link to)**
echo '<a href="'.get_permalink().'">'.get_the_post_thumbnail( $post->ID, '180,180' ).'</a>';
else
echo '<a href="#self" class="anchor-hover">'.get_the_post_thumbnail( $post->ID, '180,180' ).'</a>';
endwhile;
答案 0 :(得分:0)
将url转换为字符串,然后运行字符串
的if语句答案 1 :(得分:0)
尝试使用==
运算符。例如,将第4行替换为:
if ( get_permalink() == 'http://example.com' )