By using blogger api, we can get all our blogger posts. Every blog has one id, By using below url we can get the posts.
http://www.blogger.com/feeds/blogeer_id/posts/default
Replace blogger id in blogeer_id, In php simplexml_load_file() we can fetch the posts here is code.
<html> <head> <title>Blogger Api Example</title> </head> <body> <?php $blogeer_id = '1234567980481307770'; $URL = "http://www.blogger.com/feeds/".$blogeer_id."/posts/default"; $xmlData = simplexml_load_file($URL); foreach($xmlData->entry as $postList){ echo '<div>'; echo '<h2>'.$postList->title.'</h2>'; // This is post title echo '<p>'.$postList->content.'</p>'; // This is post content echo '</div>'; echo '<hr>'; } ?> </body> </html>
You might also like:
Simple Array Sum | Javascript | hackerrank.com07-05-2020 hackerrank.com javascript arrays array sum |
Check null values in JavaScript?04-02-2019 JavaScript null check null value |
How to redirect one page to another page in php20-03-2017 redirect php |
Filter for change Date format (MM-dd-yyyy) in Angular Js05-03-2017 mm-dd-yyyy date formats angular js |
How to change background color and color to the text using javascript27-02-2017 css javascript colors |