Wordpress php newbie here (but not a php newbie)
I followed some simple instructions here to try to create a simple index, while following some other instructions to wrap the code in a custom plugin and create a shortcode. Seems quite straightforward, but the_title() does not seem to iterate through the loop, and nor does the_field('post_date') or the_permalink(), while the_excerpt() and the_content() do.
Have I maybe wrapped up the code in a custom plugin incorrectly? It activates just fine on the plugins page.
Here is my entire custom php file:
<?php
/*
Plugin Name: Nightlord Backstage Custom Code
Description: Site specific code changes for Nightlord Backstage
*/
/* Start Adding Functions Below this Line */
function latestArticles(){
// get posts
$posts = get_posts(array(
'posts_per_page' => 10,
'post_type' => 'post'
));
if( $posts ):
echo "<ul>";
foreach( $posts as $post ):
setup_postdata( $post );
echo "<li>
<a href='";
the_permalink();
echo "'>";
the_title();
the_excerpt();
echo "(date: ";
the_field('post_date');
echo ")</a>
</li>";
endforeach;
echo "</ul>";
wp_reset_postdata();
endif;
}
add_shortcode( "latest-articles" , "latestArticles" );
/* Stop Adding Functions Below this Line */
?>
the_title function prints out the title. any time you want to echo the title or content you should use the get_the_title function which returns the title.
ACF field should be
get_field('post_date')