protected function get_post_by_guid($guid) { return cfd_get_post_by_guid($guid); }
function cfd_get_post_id_by_guid($guid) { $post_id = null; $post = cfd_get_post_by_guid($guid); if (!empty($post)) { $post_id = $post->ID; } return $post_id; }