mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
13 lines
293 B
PHP
13 lines
293 B
PHP
<?php
|
|
/* Plugin Name: Link Manager
|
|
* Description: Enables the Link Manager that existed in WordPress until version 3.5.
|
|
* Author: WordPress
|
|
* Version: 0.1-beta
|
|
*/
|
|
|
|
/*
|
|
* See http://core.trac.wordpress.org/ticket/21307
|
|
*/
|
|
|
|
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
|