php for what:在WordPress模板中相似[重复]

xxls0lw8  于 2023-03-28  发布在  PHP
关注(0)|答案(1)|浏览(108)

此问题在此处已有答案

Reference Guide: What does this symbol mean in PHP? (PHP Syntax)(25个答案)
4年前关闭。

<?php 
    while ( $incomplete_custom_resources->have_posts() ) : 
        $incomplete_custom_resources->the_post();
?>
    <tr>
        <td><?php echo get_the_title(); ?></td>

如何将此代码转换为纯PHP,什么:这个符号类似于WordPress或PHP。

uemypmqf

uemypmqf1#

<?php 
while ( $incomplete_custom_resources->have_posts() ) {
  $incomplete_custom_resources->the_post();
}
?>
<tr>
    <td><?php echo get_the_title(); ?></td>
</tr>
...

相关问题