Answers for "wordpress php get post"

PHP
4

wordpress get post by id

$post   = get_post( 123 ); // Where 123 is the ID
$output =  apply_filters( 'the_content', $post->post_content );
Posted by: Guest on October-13-2020
0

get post by name wordpress

$posts = get_posts(array('name' => 'your-posts-name', 'post_type' => 'faq'));
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language