W chwili, gdy chcę pokazać pojedynczy post bez użycia pętli, używam takiego kodu:
<?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 tego postu za pomocą slug?
1 odpowiedź
<?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;
?>