为什么:类似于wordpress模板[重复]

问题描述 投票:-4回答:1

这个问题在这里已有答案:

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

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

php wordpress
1个回答
0
投票
<?php 
while ( $incomplete_custom_resources->have_posts() ) {
  $incomplete_custom_resources->the_post();
}
?>
<tr>
    <td><?php echo get_the_title(); ?></td>
</tr>
...
© www.soinside.com 2019 - 2024. All rights reserved.