0
因此,我想獲取新發布的帖子的固定鏈接標題。 例如「http://myblog.com/healthy-life.php」我需要健康的life.phpWordpress獲得新帖子固定鏈接標題
這裏是代碼我有,但它讓我http://myblog.com/healthy-life.php
function get_laterst_post_url() {
global $wpdb;
$query = "SELECT ID FROM {$wpdb->prefix}posts WHERE post_type='post' AND post_status='publish' ORDER BY post_date DESC LIMIT 1;";
$result = $wpdb->get_results($query);
if(is_object($result[0])) {
return get_permalink($result[0]->ID);
} else {
return '';
};
}
基本上是這樣的:$ url = get_laterst_post_url(); – dciso
nope bloginfo wpurl返回wordpress站點的網址 – dciso
嗯這只是奇怪我試圖將permalink_title轉移到我的其他.php,可以做一些工作,它'$ perma = get_laterst_post_url(); $ url =「http://myblog.com/paste2.php?sub=」。$ perma; wp_remote_get($ url,$ args = array()); '但我把它作爲完整的HTML不僅是標題任何想法? – Mark