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

How to convert this code into pure PHP, What: this symbol resembles in WordPress or PHP.

Alive to die - Anant
  • 70,531
  • 10
  • 51
  • 98

1 Answers1

1
<?php 
while ( $incomplete_custom_resources->have_posts() ) {
  $incomplete_custom_resources->the_post();
}
?>
<tr>
    <td><?php echo get_the_title(); ?></td>
</tr>
...
Dieter Kräutl
  • 657
  • 4
  • 8