下面的代碼我在我的頁面上顯示WordPress的q特定帖子的固定鏈接。它的工作原理,但我覺得它可以更容易。有人可以解釋一下嗎?特定帖子ID的固定鏈接
$post_id = 26; // post id
$queried_post = get_post($post_id);
$title = $queried_post->post_title;
$content = $queried_post->post_content;
$perma = get_permalink($post_id);
if (has_post_thumbnail()) {
$image_src = wp_get_attachment_image_src(get_post_thumbnail_id(),’thumbnail’);
}
echo '<a href="' . $perma . '" title="' . $title . '">';
echo $title;
echo '</a>';
echo '<img width="100%" src="' . $image_src[0] . '">';
echo $content;
我不明白......還有什麼能比更容易' $博= get_permalink($ POST_ID);' –
對不起,我的意思回聲 –
回聲 ''; echo $title; echo ''; –