wordpressnotes.blogspot.com
Wordpress Notes: November 2011
http://wordpressnotes.blogspot.com/2011_11_01_archive.html
Wednesday, 2 November 2011. How to add featured image to wordpress theme? In wordpress we can display the images in two ways. 1 in the post content. 2 as a featured image. Featured image is introduces since worpress 2.9, also known as post thumbnails. There is no rule that every wordpress theme should be with featured images. Using featured image in a theme will give good look and clear presentation of the posts with the image. Now I will explain adding featured image to wordpress posts. If(function exis...
ruchimantram.wordpress.com
Recipes List | RUCHI MANTRAM
https://ruchimantram.wordpress.com/recipes
A Blog on Healthy Vegetarian Indian Dishes and their Recipes. Butter / Plain Dosas. Adai (Dal Rice Dosas). Vegetable Sabzi’s / Curry’s:. Avial — Kerala Style. Urad dal variety of daily dal. Daily dal with toor dal. Dal Makhani — Pressure cooker. Dal Makhani — Slow cooker. Chick peas “sundal”. Parupu “amai” Vada’s. Parupu Payasam (Dal Payasam). South Indian Filter Coffee. Gujarathi “Chaash”–Buttermilk. This page in under construction. Kindly bear the inconvenience! Thanks for stopping by! Jul 11, 2010.
wordpressnotes.blogspot.com
Wordpress Notes: December 2011
http://wordpressnotes.blogspot.com/2011_12_01_archive.html
Friday, 2 December 2011. How to retrieve remote page data in wordpress? Wordpress will have an inbuilt function to get data from a remote page which is located in wp-includes/http.php. Here is the syntax of the function:. Url is the url of the page from which we want to get data. It returns the array of information which includes headers and content. Use the following code where you want to get the page data. Response = wp remote get( 'http:/ foo.com/file.txt' );. If( is wp error( $response ) ) {.
wordpressnotes.blogspot.com
Wordpress Notes: How to add featured image to wordpress theme?
http://wordpressnotes.blogspot.com/2011/11/how-to-add-featured-image-to-wordpress.html
Wednesday, 2 November 2011. How to add featured image to wordpress theme? In wordpress we can display the images in two ways. 1 in the post content. 2 as a featured image. Featured image is introduces since worpress 2.9, also known as post thumbnails. There is no rule that every wordpress theme should be with featured images. Using featured image in a theme will give good look and clear presentation of the posts with the image. Now I will explain adding featured image to wordpress posts. If(function exis...
wordpressnotes.blogspot.com
Wordpress Notes: About us
http://wordpressnotes.blogspot.com/p/about-us.html
Welcome to my blog. This is Anjali Nalumasu.I am a wordpress developer having experience in developing web applications with php and i developed many websites with wordpress. I have the experience in developing a wordpress theme from the scratch and customizing the wordpress plugins and themes. There are many free wordpress website templates available to build a wordpress website.But all are not suitable to our requirements.To make our site according to our requirements we have to customize it.
wordpressnotes.blogspot.com
Wordpress Notes: July 2011
http://wordpressnotes.blogspot.com/2011_07_01_archive.html
Thursday, 28 July 2011. How to add shortcode to wordpress widget? Wordpress has one great feature called shortcode for adding some special content to the posts or pages. Shortcodes are the keywords with the square brackets. Ex: [gallery] is the shortcode to insert a gallery into a post or page.Place this shortcode in the page where you want to display the gallery. Like this adding a shortcode to the page or post is very simple then we will get a question “how to add shortcode to widgets? Here are the sim...
wordpressnotes.blogspot.com
Wordpress Notes: September 2011
http://wordpressnotes.blogspot.com/2011_09_01_archive.html
Friday, 30 September 2011. How to prevent update checks for installed plug-ins in wordpress? Plug-in is the one which is used to add some additional functionality to the blog. We have many free plug-in in the repository to extend the functionality. If we get any plug-in, for our requirement we can use it directly or else we will customize the plug-in according to our requirements. To avoid this problem I added the following code to the plug-in for which I want to exclude from update check. Links to this ...
wordpressnotes.blogspot.com
Wordpress Notes: How to retrieve remote page data in wordpress?
http://wordpressnotes.blogspot.com/2011/12/how-to-retrieve-remote-page-data-in.html
Friday, 2 December 2011. How to retrieve remote page data in wordpress? Wordpress will have an inbuilt function to get data from a remote page which is located in wp-includes/http.php. Here is the syntax of the function:. Url is the url of the page from which we want to get data. It returns the array of information which includes headers and content. Use the following code where you want to get the page data. Response = wp remote get( 'http:/ foo.com/file.txt' );. If( is wp error( $response ) ) {.
wordpressnotes.blogspot.com
Wordpress Notes: October 2011
http://wordpressnotes.blogspot.com/2011_10_01_archive.html
Monday, 31 October 2011. How to keep a wordpress site in Quick maintenance mode? When we are doing some maintenance to our blog at that time we should keep the users not to visit our site. To achieve this we have to keep the blog in maintenance mode. Some cms (content management systems) will have an inbuilt option at admin panel to keep the website(blog) in maintenance mode. In wordpress we don’t have the inbuilt option at admin panel to keep the blog in maintenance mode. Is user logged in() ) {. To mak...