php - wordpress: How to Get post title for given url? -
php - wordpress: How to Get post title for given url? -
i have separate wordpress table there post url in that.
now, want post title url.
tried <?php $postid = url_to_postid( $url ); ?>
doesn't seem working good. returns 0 of urls.
any ideas/suggestions ?
try next query:
$post_title=$wpdb->get_var("select post_title $wpdb->posts guid='$url'");
or
post_url column name
$tbl_new='table name post urls stored'; $post_title=$wpdb->get_var("select post_title $wpdb->posts bring together $tbl_new b on a.guid=b.post_url guid='$url'");
php wordpress
Comments
Post a Comment