我想知道是否可以使用特定模板获取页面的ID。是否可以获取分配给“ page-special.php”的页面的ID?

#1 楼

创建页面后,对该页面分配的模板将以与自定义字段相同的方式保存为自定义帖子元。 meta_key_wp_page_template,而meta_value将是页面模板

您可以简单地使用get_pages来检索具有指定模板meta_value的所有页面

$pages = get_pages(array(
    'meta_key' => '_wp_page_template',
    'meta_value' => 'page-special.php'
));
foreach($pages as $page){
    echo $page->ID.'<br />';
}


编辑23-07-2015

如果只需要页面ID,则可以使用get_posts,然后只需将page作为post_type和“ ids as”字段的值传递即可。这将确保查询更快,更优化,因为我们将只返回db中的post id列,而不是给定页面的所有返回id

(需要PHP 5.4+)

$args = [
    'post_type' => 'page',
    'fields' => 'ids',
    'nopaging' => true,
    'meta_key' => '_wp_page_template',
    'meta_value' => 'page-special.php'
];
$pages = get_posts( $args );
foreach ( $pages as $page ) 
    echo $page . '</br>';


评论


嘿,谢谢。有点“沉重”吗? (遍历所有页面)

–user3800799
2014年11月2日在8:29

取决于您有多少页。我实际上不知道有什么更快的本机方法来检索此数据。如果页面很多,我建议您使用瞬态来存储数据,并且仅在发布新页面时刷新/删除瞬态。

–Pieter Goosen
2014年11月2日在8:35

我很高兴,很高兴能为您提供帮助。请享用 :-)

–Pieter Goosen
2014年11月2日在8:44

@ user3800799如果您只想获取ID,别无其他,我已经更新了帖子

–Pieter Goosen
15年7月23日在10:47

如果您不想查询太多数据库,也可以使用set_transient(codex.wordpress.org/Transients_API)。

–克里斯·安德森(Chris Andersson)
16年5月19日在12:09

#2 楼

如果您的页面模板位于子文件夹theme-folder / page-templates / page-template.php内,则下面的查询将起作用:

$page_details = get_pages( array(
 'post_type' => 'page',
 'meta_key' => '_wp_page_template',
 'hierarchical' => 0,
 'meta_value' => 'page-templates/page-template.php'
));


上面的代码还显示子页面。

感谢

#3 楼

以下是更加明确的脚本,其中考虑了语言(如果需要)。请注意,它假定使用Polylang,而不是WPML。

function get_post_id_by_template($template,$lang_slug = null){
  global $wpdb;
  $wh = ($lang_slug) ? " AND t.slug = %s" : "";

  $query = $wpdb->prepare(
    "SELECT DISTINCT p.ID
    FROM $wpdb->posts p
    INNER JOIN $wpdb->postmeta meta ON meta.post_id = p.ID
    INNER JOIN $wpdb->term_relationships tr ON meta.post_id = tr.object_id
    INNER JOIN $wpdb->term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id
    INNER JOIN $wpdb->terms t ON tt.term_id = t.term_id
    WHERE p.post_status = 'publish' AND meta.meta_key = %s AND meta.meta_value = %s" . $wh,
    '_wp_page_template',
    $template,
    $lang_slug
  );

  $ids = $wpdb->get_results($query);

  if($ids && isset($ids[0])){
    $p = $ids[0];
    return $p->ID;
  } else {
    return false;
  }
}// get_post_id_by_template


#4 楼

这是可与WPML和Polylang一起使用的完整功能。归功于https://github.com/cyrale/

/**
* Search for a page with a particular template.
*
* @param string $template Template filename.
* @param array  $args     (Optional) See also get_posts() for example parameter usage.
* @param bool   $single   (Optional) Whether to return a single value.
*
* @return Will be an array of WP_Post if $single is false. Will be a WP_Post object if the page is find, FALSE otherwise
*/
if (!function_exists('get_page_by_template')) {
    function get_page_by_template($template, $args = array(), $single = true) {
        $pages_by_template = wp_cache_get('pages_by_template', 'cyrale');
        if (empty($pages_by_template) || !is_array($pages_by_template)) {
            $pages_by_template = array();
        }
        if (!isset($pages_by_template[$template])) {
            $args = wp_parse_args(array(
                'posts_per_page' => -1,
                'post_type'      => 'page',
                'suppress_filters'  => 0,
                'meta_query'     => array(
                    array(
                        'key'   => '_wp_page_template',
                        'value' => $template,
                    ),
                ),
            ), $args);
            $pages = get_posts($args);
            $pages_by_template[$template]= array(
                'single' => !empty($pages) && is_array($pages) ? reset($pages) : false,
                'pages'  => $pages,
            );
        }
        wp_cache_set('pages_by_template', $pages_by_template, 'cyrale');
        return $pages_by_template[$template][$single ? 'single' : 'pages'];
    }
}