将sprintf与IF条件结合起来

时间:2015-05-31 11:32:50

标签: php if-statement

我遇到了一个愚蠢的问题。有人要求我在php网站模板中安排一些更改。所以这是标题/超链接的代码:

<?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>

这应该结合:

<?php if( in_category('local-msr') ) { echo 'target="_blank" '; } ?>

我尝试过这样的事情:

<?php the_title( sprintf( '<h1 class="entry-title"><a href="%s" rel="bookmark" if( in_category('local-msr') ), echo 'target="_blank">', esc_url( get_permalink() ) ), '</a></h1>' ); ?>

但没有成功。

有关如何使这项工作的任何想法?谢谢!

1 个答案:

答案 0 :(得分:4)

我会在sprintf添加第三个参数。

你可以在一条线上完成所有工作,但为了清楚起见,我会把它写出来:

// set a variable that has the target or is empty if the condition is not met
$target = in_category('local-msr') ? 'target="_blank"' : '';
the_title( sprintf( '<h1 class="entry-title"><a href="%s" %s rel="bookmark">', esc_url( get_permalink() ), $target ), '</a></h1>' );
//                                                        ^^ add the variable here
//                                                                                                         ^^^^^^^ the value