我有这个:
printf( '<cite class="fn"><a href="http://www.xxx.it/dialogueroom/?page_id=64&username=">%s</a></cite>', get_comment_author_link() );
我想用%s变量构建我的网址
类似的东西:
<a href="http://www.xxx.it/dialogueroom/?page_id=64&username=%s">%s</a>
但它不起作用。
你可以帮帮我吗?谢谢!
取值
答案 0 :(得分:1)
在字符串cf中有多个占位符。 argument swapping:
printf(
'<cite class="fn"><a href="http://www.xxx.it/dialogueroom/?page_id=64&username=%1$s">%2$s</a></cite>',
$username,
get_comment_author_link()
);
答案 1 :(得分:0)
printf( '<cite class="fn"><a href="http://www.break-out.it/dialogueroom/?page_id=64&username=%1$s">%2$s</a></cite>', get_comment_author(), get_comment_author_link() );
这是有效的:)感谢Diggy。解决方案来自你