Created
June 8, 2018 21:13
-
-
Save timelsass/fbb8df66c54c7b132a509c6b08cc8b79 to your computer and use it in GitHub Desktop.
Example page template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template Name: Something New | |
* | |
* Template for something new pages. | |
*/ | |
while ( have_posts() ) : the_post(); | |
echo '<div><p>I\'m a template!</p></div>'; | |
endwhile; // end of the loop. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment