通过帖子名称而不是id获取帖子
好的,我目前有这个代码。
<?php
$post_id = 266;
echo "<div id='widgets-wrapper3'><div id='marginwidgets' style='overflow: auto; max- width: 100%; margin: 0 auto; border: none !important;'>";
$queried_post = get_post($post_id);
echo "<div class='thewidgets'>";
echo substr($queried_post->post_content, 0, 500);
echo "<a href='".get_permalink( 26 )."' title='Read the whole post' class='rm'>Read More</a>";
echo "</div>";
echo "</div></div>";
?>
正如你所看到的上面的代码,例程是通过ID获取帖子,但我的永久链接更改为帖子名称而不是帖子ID用于SEO目的。如何通过帖子名称获取帖子?
希望这里的某个人能弄清楚。谢谢。