php WP查询/如何创建自定义页面

Posted

tags:

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

<?php
/**
 * Template Name: Custom Template - how WP knows what the page is 
 */
get_header(); ?>
    <div id="primary" class="content-area">
        <main id="main" class="site-main" role="main">
            <article <?php post_class(); ?>>
                <header class="entry-header">
                    <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
                </header><!-- .entry-header -->
                <div class="entry-content">
                    <?php
                        // The Query
                        $args = array(
                            'post_type' => 'post', - what type of content should the custom page widget display it can be any of the mentioned in WP Codex
                            'order' => 'ASC',
                            'orderby' => 'title',
                            'posts_per_page'=>3 - how many posts to display
                        );
                        $the_query = new WP_Query( $args );
                        // The Loop
                        if ( $the_query->have_posts() ) {
                            echo '<ul>';
                            while ( $the_query->have_posts() ) {                                
                                $the_query->the_post();
                                echo '<li>' . get_the_title() . '</li>';
                            }
                            echo '</ul>';
                        } else {
                            // no posts found
                        }
                        /* Restore original Post Data */
                        wp_reset_postdata();
                    ?>
                </div>
            </article>
        </main><!-- .site-main -->
    </div><!-- .content-area -->
<?php get_footer(); ?>

以上是关于php WP查询/如何创建自定义页面的主要内容,如果未能解决你的问题,请参考以下文章

php 添加自定义设置页面wp admin

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

PHP 另一个(wp 2.3.3)自定义循环查询示例

php 使用ACF选项页面的WP全局自定义字段

php 事件日历 - 使用WP_Query进行自定义查询

php 查询WP_QUERY中的高级自定义字段