Get wordpress post by post title (ok)
https://stackoverflow.com/questions/21040938/get-wordpress-post-by-post-title/21041093
$posttitle = 'About';
$postid = $wpdb->get_var( "SELECT ID FROM $wpdb->posts WHERE post_title = '" . $posttitle . "'" );
echo $postid;
PreviousAutomatically Deploy to WordPress.com Using GitHub ActionsNextMột ví dụ kinh điển sử dụng Custom Post Type && Custom Taxonomies dùng chung đường dẫn (ok)
Last updated
Was this helpful?