0
頁面模板命名頁面person.php從模板創建的與身定製
<?php
/**
* Template Name: Person Page
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package mentorme
*/
get_header(); ?>
<div class="personality">
<!-- dynamic content -->
<?php the_content(); ?>
</div>
<?php get_footer(); ?>
現在我已經加入了一些測試內容創建網頁,同時創造從模板「個人頁面」的頁面這樣
但在頁面上/ dr-xyz它沒有在任何地方顯示文本'測試'!
它仍然沒有顯示內容! – coure2011
閱讀更多是更多的鏈接文本參數,它接受用作readmore文本的文本字符串。 –
你能更具體嗎?你得到什麼樣的輸出?您是否獲得了完整的空白屏幕,或者您只獲取頁眉和頁腳? –