How to activate link manager on WordPress 3.5 (and newer)
The new WordPress version like 3.5 (and newer) , wordpress have left out the Link Manager facility from the admin area. In the following way we can bring it back!
You can just paste this code into your functions.php file and it will works
<?php
//Activate the Link Manager built in to the WordPress admin
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
?>
The new WordPress version like 3.5 (and newer) , wordpress have left out the Link Manager facility from the admin area. In the following way we can bring it back!
You can just paste this code into your functions.php file and it will works
<?php
//Activate the Link Manager built in to the WordPress admin
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
?>
No comments:
Post a Comment