Skip to content

Instantly share code, notes, and snippets.

@funteractive
Created October 30, 2013 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save funteractive/7228521 to your computer and use it in GitHub Desktop.
Save funteractive/7228521 to your computer and use it in GitHub Desktop.
スラッグからpostオブジェクトを取得
<?php
function get_post_by_slug( $post_name, $post_type = 'post' ){
$args = array(
'name' => $post_name,
'post_type' => $post_type,
'posts_per_page' => 1
);
$the_post = get_posts( $args );
$the_post = $the_post[0];
return $the_post;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment