Monday, July 28, 2014

Protect wp-config.php with .htaccess

Adding this to your .HTACCESS will prevent access to your wp-config.php fil...

Prasath Mani
Posted By Unknown11:08 PM

Thursday, August 1, 2013

Hide specific plugin from plugin installed list in WordPress

Add bellow code into functions.php file function hideplugin() { global $wp_list_table; $hidearr = array('plugin-folder/plugin.php'); $myplugins = $wp_list_table->items; foreach ($myplugins as $key => $val) { if (in_array($key,$hidearr)) { unset($wp_list_table->items[$key]); } } } add_action( 'pre_current_active_plugins', 'hideplugin' )...

Prasath Mani
Posted By Unknown7:03 PM

Tuesday, June 4, 2013

DRY CSS Creating efficient, unified and Scalable stylesheets

Tag: , ,

The ease of learning and applying CSS is mitigated by the language’s lack of logic. Unlike programming languages that have reusable components like variables and functions, CSS almost encourages flagrant reuse of selectors and property-value pairs. Indeed, even when redundant and bloated, CSS is perfectly functional. DRY CSS is based on taking the “don’t repeat yourself” principle of software development very literally. That’s right: when coding CSS, the goal is never to repeat a property-value pair. Ever. I know it seems rather…ah, intense,...

Prasath Mani
Posted By Unknown6:12 PM

Sunday, May 19, 2013

Improve Search Ranking with Quality Contents

Tag: ,

Targeted Keywords Perhaps one of the most critical factors in your websites ranking is how many times your page includes the keywords you are optimizing for. You need to be aware of exactly what phrases people use to find your website and include them regularly in your page content. By no means does this mean you should “keyword stuff” your page, but rather include your search terms in a natural manner that still maintains readability...

Prasath Mani
Posted By Unknown4:10 PM

How to Increase Your Bloger Loading Speed?

Tag:

Blog Load Speed is an important feature for both visitors and search engines. Both searches engines and visitors hate slow sites. So how can you decrease your page load speed? Just Follow the Below Tips You definitely have some change in your blog loading time. Avoid Repeating Widgets It is one of the important problem will that affect your blog loading time. Try to reduce the use of unwanted widget or repeating widget from your...

Prasath Mani
Posted By Unknown4:07 PM