Showing posts with label permalink. Show all posts
Showing posts with label permalink. Show all posts

Tuesday, November 8, 2016

WordPress OutBoundLinks

In many cases we need the links of external website which are present in the content should open in new tab as the original website is not lost. Every time is not possible to add a target blank attribute to the external link while adding the content in the blog post.

Also it helps with the SEO of the website. This plugin automatically adds the target blank attribute to external links present in the content.

Features of the plugin are as follows:

  • It Works with all WordPress posts.
  • It Opens all external links of a post in a new tab.
  • It adds a query string parameter "?rel=outbound" to an hyper-link.
  • The Links which refer within the site are excluded.

You can download and install this plugin at WordPress plugin repository

URL: https://wordpress.org/plugins/outboundlinks/

Thursday, December 24, 2015

Wordpress get permalink of post from ID

Permalink of a page or post using ID can be retrieved as follows:

$url = get_permalink($post_id);

Where $post_id  is the ID of the post or page whose permalink is to be get.

MS SQL : How to identify fragmentation in your indexes?

Almost all of us know what fragmentation in SQL indexes are and how it can affect the performance. For those who are new Index fragmentation...