按模板获取页面ID


19

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

Answers:


39

创建页面后,对该页面分配的模板将以与自定义字段相同的方式另存为自定义帖子元。该meta_key_wp_page_templatemeta_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,则可以使用as ,get_posts然后传递pageas 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

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

我很高兴,很高兴可以提供帮助。享受:-)
Pieter Goosen 2014年

@ user3800799我更新了帖子,如果您只想获取ID,别无所求
Pieter Goosen 2015年

如果您不想查询太多数据库,也可以使用set_transientcodex.wordpress.org/Transients_API)。
克里斯·安德森

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'
));

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

谢谢


0

以下是更加明确的脚本,其中考虑了语言(如果需要)。注意,它假定使用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

0

这是与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'];
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.