Skip to content

Instantly share code, notes, and snippets.

@Padilo300
Created July 2, 2020 09:33
Show Gist options
  • Save Padilo300/1cdcae12aae0d753223039bc36d7c812 to your computer and use it in GitHub Desktop.
Save Padilo300/1cdcae12aae0d753223039bc36d7c812 to your computer and use it in GitHub Desktop.
WP wordpress new page
<?php
/**
* Template Name: Оплата
*/
?>
<?php while( have_posts() ) : the_post();
$more = 1; // отображаем полностью всё содержимое поста
the_title(); // эта функция выводит заголовок
the_content(); // выводим контент
endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment