Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/12.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 用于什么:类似于wordpress模板_Php_Wordpress - Fatal编程技术网

Php 用于什么:类似于wordpress模板

Php 用于什么:类似于wordpress模板,php,wordpress,Php,Wordpress,如何将此代码转换为纯PHP,什么:此符号类似于WordPress或PHP。 <?php while ( $incomplete_custom_resources->have_posts() ) : $incomplete_custom_resources->the_post(); ?> <tr> <td><?php echo get_the_title(); ?></td>

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


<?php 
    while ( $incomplete_custom_resources->have_posts() ) : 
        $incomplete_custom_resources->the_post();
?>
    <tr>
        <td><?php echo get_the_title(); ?></td>
...
获取标题()后如何回显虽然这段代码可能会解决问题,但好的答案总是要解释问题是如何解决的以及问题是什么。
<?php 
while ( $incomplete_custom_resources->have_posts() ) {
  $incomplete_custom_resources->the_post();
}
?>
<tr>
    <td><?php echo get_the_title(); ?></td>
</tr>
...