php PAGE personalizada //自定义页面(WP)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php PAGE personalizada //自定义页面(WP)相关的知识,希望对你有一定的参考价值。

<?php /*  * Template Name: Nombre de la plantilla (ej: foto derecha) */ ?> 
<!-- Al añadir esta línea es cuando el sistema reconocerá que existe una plantilla y nos permitira elegirla en una página a través del menu seleccionable -->

<?php get_header(); ?> <!-- HEADER YOOTHEME: añadimos los ficheros de header de la plantilla de Yootheme-->



<!-- START CODE PAGE.PHP -->
<!-- //////////////////////////////////////////////////////////////////////////////////////////////////// -->

  <?php if (have_posts()) : ?>
      <?php while (have_posts()) : the_post(); ?>

      <article class="uk-article">

          <?php if (has_post_thumbnail()) : ?>
              <?php
              $width = get_option('thumbnail_size_w'); //get the width of the thumbnail setting
              $height = get_option('thumbnail_size_h'); //get the height of the thumbnail setting
              ?>
              <?php the_post_thumbnail(array($width, $height), array('class' => '')); ?>
          <?php endif; ?>

          <h1 class="uk-article-title"><?php the_title(); ?> </h1>

          <?php the_content(''); ?>

          <?php edit_post_link(__('Edit this post.', 'warp'), '<p><i class="uk-icon-pencil"></i> ','</p>'); ?>

      </article>

      <?php endwhile; ?>
  <?php endif; ?>

  <?php comments_template(); ?>

<!-- //////////////////////////////////////////////////////////////////////////////////////////////////// -->
<!-- END CODE PAGE.PHP -->



<?php get_footer(); ?> <!-- FOOTER YOOTHEME: añadimos los ficheros de header de la plantilla de Yootheme-->

以上是关于php PAGE personalizada //自定义页面(WP)的主要内容,如果未能解决你的问题,请参考以下文章

apache_conf Páginasdeerror personalizadas

URL结构/page.php与PHP中的/page [重复]

htaccess URL 重写 page.php?page

PHP分页

php分页

PHP简单分页