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

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -