Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

how to get data from any specific page like blog page etc

I have a wordpress website and there are some page like aboutpage, blogpage, contactpage etc,
so my concern is that i want data like title, paragraph from that specific page (blogpage)
so how do i get this for better understanding i add some reference image
enter image description here
enter image description here

how do i get title and content

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Can you refer this https://developer.wordpress.org/reference/functions/get_post/

’42’ is post id you can get all like title, content, …

$post   = get_post( 42 );
$output =  apply_filters( 'the_content', $post->post_content );
print_r($post);
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading