How To Create Pages In WordPress With Custom Coding

Objective Create a page in WordPress which will show the header, footer, sidebars like the rest of the site, but will allow custom coding in the main body section. So how to create this WordPress page which will allow custom coding ? 1. Go to the theme folder in wp-content\themes\{your_theme_folder} 2. Create a page with… Continue reading How To Create Pages In WordPress With Custom Coding

How to get recent comments in WordPress explained with all the parameters

Get all the values for all the comments Suppose you want to show the recent comments for a WordPress blog. There is a ready made WordPress function for that. It is – get_comments() This function will return all the comments posted till date as an array of objects. Each object contains the following fields- [comment_ID]… Continue reading How to get recent comments in WordPress explained with all the parameters