특정 템플릿이있는 페이지의 ID를 얻을 수 있는지 알고 싶습니다. "page-special.php"에 할당 된 페이지의 ID를 얻을 수 있습니까?
특정 템플릿이있는 페이지의 ID를 얻을 수 있는지 알고 싶습니다. "page-special.php"에 할당 된 페이지의 ID를 얻을 수 있습니까?
답변:
페이지가 작성되면 해당 페이지에 지정된 템플리트가 사용자 정의 필드와 같은 방식으로 사용자 정의 게시물 메타로 저장됩니다. 는 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 />';
}
페이지 ID가 필요하면 as 및 'ids fields ' 값 을 사용 하고 get_posts
전달하십시오 . 이렇게하면 주어진 페이지에 대해 모든 게시물이 아닌 db의 게시물 ID 열만 반환하므로 훨씬 빠르고 최적화 된 쿼리를 보장합니다.page
post_type
as
( 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>';
set_transient
( codex.wordpress.org/Transients_API )를 사용할 수도 있습니다 .
다음은 필요한 경우 언어를 고려한 약간 더 명료 한 스크립트입니다. WPML이 아닌 Polylang의 사용을 가정합니다.
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
다음은 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'];
}
}