December 2017
Beginner
458 pages
7h 52m
English
Now for the Back button we will change the index.html to <?php echo site_url(); ?> as shown here:
<div class="w3-row"> <div class="w3-col l2"> <br /> <a href="<?php echo site_url(); ?>" class="w3-btn w3-red">Back</a> </div>
This will take us back, and for a dynamic title we can simply replace the Photo Title with <?php the_title();?> as shown here:
</div><div class="w3-col l10>"><h1><?php the_title(); ?></h1><p>Lorem ipsum dolor sit amet, consectetur adiposcing elit.</p></div>
Then for the dynamic content, we can replace the paragraph with <?php the_content(); ?>:
</div><div class="w3-col l10>"><h1><?php the_title(); ?></h1><p><?php the_content(); ?></p></div>
With all the changes implemented in ...
Read now
Unlock full access