如果有一个扭曲的其他 - 也许
我可以在执行“else”之前创建一个 If Else 语句来完成 div 吗? 我想循环浏览我的帖子,并将“specialCat”中的帖子放在一个 div 中。
<div id="the-div-i-want-to-close">
<?php if (in_category('specialCat')) { ?>
<h1><?php the_title(); ?></h1>
<?php } else { ?>
<h1><?php the_title(); ?></h1>
<?php } ?>
多谢 :)
Can i make a If Else-statement that finishes a div before doing "else"?
I want to cycle through my posts and put the posts from "specialCat" in one div.
<div id="the-div-i-want-to-close">
<?php if (in_category('specialCat')) { ?>
<h1><?php the_title(); ?></h1>
<?php } else { ?>
<h1><?php the_title(); ?></h1>
<?php } ?>
Thanks a lot :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您最好的选择是修改调用您的特殊类别的查询,然后用其余的帖子完成循环。
Your best bet is to modify the query calling your special category then finishing the loop with the rest of the posts.
只要关闭 PHP 标签(或在 echo 语句中包含 HTML),您就可以在 foreach 循环中包含 HTML。
You can include HTML within a for each loop, so long as you close the PHP tags (or include the HTML in an echo statement).
这对你有用吗?
Would this do it for you?