Category: Wordpress

Onsite SEO vs OffSite SEO for web pages

I’ve done quite a few posts about SEO, but i wanted to write one more about the difference between on and offsite SEO. Firstly, SEO stands for Search Engine Optimization. If you have no idea what it is, than this probably isn’t the post for you since it’s not really relevant. However if you have […]

How to Use Jquery CDN Media Template file in wordpress website

Here is code which show you that how to Use jQuery CDN Media Template file in wordpress website. Just copy and Paste below code to your theme function.php file.

How to Use Typekit fonts in WordPress theme

Typekit is a useful service which allow you to use countless different fonts on your website or blog. They do provide a WordPress plugin to easily add their fonts to your WordPress site, but there’s no built-in solution for integrating Typekit fonts directly to your theme. Here’s a code to do it. 

WordPress 3.5 Released – Update Safely!

WordPress 3.5 was released yesterday and it includes many usability updates – especially for the media manager. Although there were no significant security updates mentioned we do recommend that you update as soon as possible. However this is a major release, so it could potentially break a few things. Especially plugins and themes might require […]

WordPress 3.5 Elvin Is Released and ready for download

It’s the most wonderful time of the year: a new WordPress release is available and chock-full of goodies to delight bloggers and developers alike. This one “Elvin” in honor of drummer Elvin Jones, who played with John Coltrane in addition to many others. Today WordPress has released it’s next big version…Wordpress 3.5 is on the shelves and ready to be […]

Super useful wordpress Plugins & Tools for WordPress Developers

Here are some time Super useful wordpress Plugins & Tools for WordPress Developers Below are some growing collection of WordPress plugins, and discovered some great resources for my WP “developer toolbox.” These are some super-useful plugins and tools for debugging, logging data, working with translation files, analyzing performance, and making otherwise difficult tasks efficient and manageable. […]

How to Show Pending Review post to front end logged-In users in wordpress

Here is wordpress snipped code to Show “Pending Review” post to frontend logged-In users. Other Normal users which are not logged into wordpress website cant see “pending review “post in post list.

How to define Access on specific content in WordPress for a specific user only

Some requirement comes to access specific portion of wordpress website to specific user only. So here is the code define Access on specific content in WordPress for a specific user only. Update this code into Your template page like page.php, singlepost.php or wherever u want to do this.

How to Moving WordPress Plugin Folder

If you don’t want to change the location of the entire wp-content folder in wordpress but just want to move the plugins folder then you can change this location the same as above. For the plugin folder location we need to define the variable WP_PLUGIN_DIR.

How to WordPress Move Wp-Content Folder To Different Location

Move the wordpress wp-content is for wordpress security if you move this to an unexpected location any hackers looking to target this area won’t be able to find it, or it will make it more difficult to find. To change the location of the wp-content is quite simple as the location of this folder can be configured […]

How to disable plugin updates on your WordPress blog

Here is wordpress function php Snippet code to disable plugin updates on WordPress blog. Simply add that to your functions.php file and click save and the notices of wordpress plugin updates will disappear. Thanks to WP Snippets for the useful tip!

How to disable the WordPress Update Notice

Here is wordpress php function code to Disable the WordPress Update Notice from wordpress backend. Simply add that to your functions.php file and click save and the notices will disappear. :) Source: wp-snippets.com

25 Useful Books For Web Designers And Developers

If you are a designer or developer, you probably know that this field is one of the most innovative and fastest growing industry in the world. If you want to keep up to date and stay ahead of your competitors you must learn new things all the time and follow trends. Even though the Internet is […]

Make your website faster with mod_pagespeed, now out of Beta

If your page is on the web server, speed matters! For web developers, web designer and webmasters, making your page faster shouldn’t be a hassle, which is why Google PageSpeed Team introduced mod_pagespeed in 2010. Since then the development team has been working to improve the functionality, quality and performance of this open-source Apache module that automatically […]

How to Increase WordPress Memory Limit

A common error you can come across in WordPress is a PHP memory limit error. This happens when WordPress doesn’t have enough memory to achieve what you want. It can be caused by poorly written plugins that will continue to run a procedure until the installation runs out of memory. Since version 2.5 there is a […]

How to disable file edition in WordPress admin

Here is useful wordpress code snippet to disable file edition in WordPress admin Just paste the following (or only the needed line) in your wp-config.php file. This file is located at the root of your WordPress install. Thanks to Paulund for this useful code snippet!