Created
July 2, 2020 09:33
-
-
Save Padilo300/1cdcae12aae0d753223039bc36d7c812 to your computer and use it in GitHub Desktop.
WP wordpress new page
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: Оплата | |
*/ | |
?> | |
<?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