Link.FYI

Pastebin

Create New My Pastes

Code (PHP) pasted on 2020-06-20, 01:14 Raw Source

  1. <?php
  2. /**
  3.  * Template Name: Experimental Template
  4.  * Template Post Type: page
  5.  *
  6.  * @package WordPress
  7.  * @subpackage Twenty_Twenty
  8.  * @since Twenty Twenty 1.0
  9.  */
  10.  
  11. get_header();
  12. ?>
  13.  
  14. <main id="site-content" role="main">
  15.  
  16.         <h3><?= __('Let\'s have some fun', 'yaml') ?></h3>
  17.         <?php
  18.  
  19.         if ( have_posts() ) {
  20.  
  21.                 while ( have_posts() ) {
  22.                         the_post();
  23.  
  24.                         get_template_part( 'template-parts/content', get_post_type() );
  25.                 }
  26.         }
  27.  
  28.         ?>
  29.  
  30. </main><!-- #site-content -->
  31.  
  32. <?php get_template_part( 'template-parts/footer-menus-widgets' ); ?>
  33.  
  34. <?php get_footer(); ?>