How to query custom fields via meta_query?
WordPress has vast functionality to customize and we can create custom post types and custom fields as many as we required. We can also make queries them to show search results. I got chance...
WordPress has vast functionality to customize and we can create custom post types and custom fields as many as we required. We can also make queries them to show search results. I got chance...
There are a lot of open source content management systems and blogging systems. WordPress is very famous for blogging but now it is also using as content management system and e-commerce solutions. I like...
We can find last month starting ending date by using php functions strtotime and date. For last month last we will use t format character in date function. Following are statements for starting and...
WordPress is in U.S. English by default. WordPress has already been translated into many languages and all are available on wordpress site for free. WordPress also providing support for translating it in different languages....
While development, you might need to add or subtract date from other date. It’s very easy via PHP date and strtotime functions. Following are few examples. Add 2 Months in current date. You can...
Wordpress make it easy to categorize your website content by the use of Custom Post Type UI Plugin. You create your own post types and categorize them by Custom Taxonomy. Download and install Custom...
I like Git a lot. It is very much powerful then SVN. You can’t commit or merge if there are changes on same branch on server, this will prevent files to overwrite. See following...
Negative text-indent isn’t working in IE7 to remove button text but you can apply text-transform: capitalize with text-indent property. Following is code snippet. HTML code: <input class="button" type="button" value="Button Text" /> CSS: input.button {...
Let following text field. <input type=’text’ name="textbox" id="textbox" /> By following statement you can set its default value. $("#textbox").val("Any Value"); Use focus() event to change value when you focus on input field. $("#textbox").focus(function(){ $("#textbox").val("");...
Many of you might use opencart for online store development. Opencart can also be used for multi store with single admin; you can manage both stores with same admin. I am using wamp so...
More