Monday, July 28, 2014

Protect wp-config.php with .htaccess



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

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, but it can be done.

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 for the end user.
 

Write for Visitors not Spiders

Spamming your page with keywords will not only make your website unreadable by visitors, but can also harm your search engine ranking. Search engine spiders use complex algorithms to determine search rankings and can easily spot ‘spam’ pages, so make sure your page is readable by human visitors.
 

Add Unique Content

Adding fresh content is a great way to keep search spiders coming back regularly and a natural way to add more content for search spiders to crawl. The more content you create, the more opportunities you are providing to share your information, link to you, and increase the ranking for the optimized keywords on that page.
 

Avoid Duplication  

Duplicate content is an easy way to get your website banned from search results as it is considered a spamming technique by search engines! Don’t take the easy way out, create unique content for each page and you should see the ranking benefits you were hoping for.
 

Use Formatting Elements

Search spiders rely on page formatting elements to highlight headings and important keywords. Using headline tags, bold text and bullet points are a great way to ensure your keywords stand out. Again, only highlight when necessary, and make the text look natural to search engine spiders.

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 blog. Try to reduce the Scrolling Length of your blog.
You should try to avoid same type of widgets by different developers.


Avoid Visitors Count Widget


Visitors counting widget will take more time to load and that will affect your blog speed also. Try to avoid this problem by using reduced amount of using visitor count widgets or find some widget having less loading time.


Avoid displaying videos in the sidebar


Publishing videos in the sidebar decreases your blog’s overall speed. So try embedding videos in pages/posts. But not as a sidebar widget.


Remove Unwanted CSS from your template


 If you are using a free template for your blog, then probably it will have over css codes. If you don’t want any css effect, and if you know css/html editing, then it is good to remove them.


Choose SEO friendly Themes


If you are choosing a free theme, then try using a SEO optimized theme, so that it may have all basic optimizations to keep your blog on line. Try to use simple, well designed and less loading time widget.


Don’t keep more than one Subscription Boxes


Some sites have many types of subscription box. They will add subscription boxes as a pop-up, sidebar widget and below posts to increase social media subscribers. It is not good as it decreases your blog speed.


Reduce Ads


Displaying too many ads in your blog is not advisable. It does not increase your income but decrease your ranking. The best place to display ads is below post titles.

In my suggestion use one or two ads in sidebar and other ads you can use in Bellow post title and in between post content…


Avoid Pop-Up Ads and Widgets


Most of us hate pop-up ads and widgets. It really makes the visitor feel irritated. But when it comes to displaying ads, publishers will try to add so many pop-up ads as they give good earnings. But remember, if there is visitor then only there is earnings.


Regularly Check Your Blog Speed


You should check your blog’s load speed regularly. If it shows some errors or suddenly starts lagging, then you should take adequate measures and check for malwares, widget errors etc.

Prasath Mani
Posted By Unknown4:07 PM