I'm not stuck on anything but I have the following code and want to know froma theoretical perspective why echo
is required with the_permalink();
and the_title();
in the PHP script below
<div class="col-md-9">
<a href="<?php echo the_permalink(); ?>"
<h2><?php echo the_title(); ?></h2>
<a/>
I'm still a bit new to PHP and building in Wordpress so that could have something to do with my confusion here but just for general knowledge, I would like to know.