30 Sep 2011Posted by admin
This page has a list of all the available WordPress constants defined by WordPress. This list can be handy when you are modifying a WordPress plugin or theme and need to find a reference to a particular constant.
30 Sep 2011Posted by admin
The video tutorial on this page will show you how to add a MailChimp Widget to your WordPress powered site so you can start building an email list. WordPress MailChimp Integration Video Tutorial Summary Here is a summary of what this mailchimp wordpress widget video will cover What to offer to your visitors to get them to singup Explanation of the two available methods of adding a MailChimp newsletter subscription form How to create your first MailChimp list How to create a signup form in your MailChimp account How to place the newly created MailChimp signup form ...
20 Sep 2011Posted by admin
WordPress has a function that allows you to retrieve the content of a remote webpage so you can do something with it. There are two functions that you can use: wp_remote_get (Retrieve the webpage content using HTTP GET) wp_remote_post (Retrieve the webpage content using HTTP POST) Example Code to Retrieve Remote Webpage Content using HTTP GET Method $response = wp_remote_get( 'http://www.example.com/some-text-file.txt' ); if(is_wp_error($response))//check to see if any error occured { echo 'An error orccured when trying to retrieve the remote webpage content!'; print_r($response); //This will dump more data } else //webpage content was retrieved successfully { echo 'Here is the retrieved content:'; echo ...
22 Aug 2011Posted by admin
To show the tags associated with a WordPress post from your template file automatically simply open the “single.php” template file from your theme and add the following line of code where you want to show the tags: <?php the_tags('<strong>Tags: </strong>',' , '); ?> The above code will display a list of the tags associated with the post in question separated by comma (,).
22 May 2011Posted by admin
You can use WordPress’s wp_mail() function to send emails from your WordPress site. However, the default content type is ‘text/plain’ which does not allow using HTML. If you want to send HTML emails then you will need to set the content type of the email to “text/html” by using the ‘wp_mail_content_type’ filter.This is how you can do that: before you send your wp_mail call add a filter to wp_mail_content_type add_filter('wp_mail_content_type','set_content_type'); Then in your set_content_type function have it return the appropriate content type, in this case ‘text/html’ function set_content_type($content_type){ return 'text/html'; } A More Compressed Way to Set ...
15 Apr 2011Posted by admin
WordPress is so functional and easy to use that it is now becoming one of the biggest platforms for eCommerce websites, blogs and forums all over the world. Plugins are different types of applications, if you will, that allow a different level of functionality based on your needs and your website. Since WordPress plugins have become essential, there are more and more plugins to choose from which raises the question, which one do you choose? Taking the time to shop around for the right plugin for your shopping cart functions ...
13 Apr 2011Posted by admin
You can directly copy the YouTube video embed code and paste it into your WordPress post or page in HTML view to embed the video but this option is not very nice looking. I embed YouTube Videos using a WordPress plugin called WordPress Video Lightbox which allows me to embed videos anywhere on my WordPress site using a shortcode. When the YouTube video is embedded using this plugin the video is displayed using a much more professional looking method. You can also use the video embed button in WordPress’s post or ...
6 Apr 2011Posted by admin
WordPress 3.1.1 is now available. This maintenance and security release fixes almost thirty issues in 3.1, including: Some security hardening to media uploads Performance improvements Fixes for IIS6 support Fixes for taxonomy and PATHINFO (/index.php/) permalinks Fixes for various query and taxonomy edge cases that caused some plugin compatibility issues Version 3.1.1 also addresses three security issues discovered by WordPress core developers. The first hardens CSRF prevention in the media uploader. The second avoids a PHP crash in certain environments when handling devilishly devised links in comments, and the third addresses ...
6 Apr 2011Posted by admin
This article is dedicated to teaching you how to build a list successfully. It doesn’t matter if your niche is dogs or internet marketing, because the strategy is always the same. If you really want to succeed at a higher income level, want to create an enormous list, market your products, services, or courses online, then the information in this post is going to be the turning point for you. Everyone who is serious about finding a solution of how to build a list profitably has to know the steps ...
31 Mar 2011Posted by admin
There are plenty of ways to maximize the revenue of your WordPress site. These web pages are loved by Google and you can set up a simple blog with paid-ads on it, or just run a few CPA offers on the site. If your web page is getting enough traffic, you can achieve decent monthly revenue from featuring banners too. Some people have already realized that a WordPress site is also working well with a WordPress membership plugin.- And recurring income can be achieved easily, once the site has ...