Na razie gdy chcę pokazać pojedynczy post bez użycia pętli używam tego:
<?php
$post_id = 54;
$queried_post = get_post($post_id);
echo $queried_post->post_title; ?>
Problem polega na tym, że kiedy przenoszę witrynę, identyfikator zwykle się zmienia. Czy istnieje sposób na zapytanie o ten post przez slug?
Odpowiedzi:
Z kodeksu WordPress:
<?php $the_slug = 'my_slug'; $args = array( 'name' => $the_slug, 'post_type' => 'post', 'post_status' => 'publish', 'numberposts' => 1 ); $my_posts = get_posts($args); if( $my_posts ) : echo 'ID on the first post found ' . $my_posts[0]->ID; endif; ?>
Kodeks WordPress Pobierz posty
źródło
echo $my_posts[0]->post_content
Co powiesz na?
<?php $queried_post = get_page_by_path('my_slug',OBJECT,'post'); ?>
źródło
my-slug
powinna staćmy-parent-slug/my-slug
: codex.wordpress.org/Function_Reference/...metoda tańsza i wielokrotnego użytku
function get_post_id_by_name( $post_name, $post_type = 'post' ) { $post_ids = get_posts(array ( 'post_name' => $post_name, 'post_type' => $post_type, 'numberposts' => 1, 'fields' => 'ids' )); return array_shift( $post_ids ); }
źródło
Ponieważ interfejs Wordpress API się zmienił, nie można używać funkcji get_posts z parametrem „post_name”. Zmodyfikowałem nieco funkcję Maartens:
function get_post_id_by_slug( $slug, $post_type = "post" ) { $query = new WP_Query( array( 'name' => $slug, 'post_type' => $post_type, 'numberposts' => 1, 'fields' => 'ids', ) ); $posts = $query->get_posts(); return array_shift( $posts ); }
źródło
'no_found_rows' => true
do argumentów get_posts.