admin管理员组文章数量:1320661
There is no links manager in the admin_menu of Wordpress 3.5.1 anymore. I'm creating a custom add_links_page, and I'm having a hard time with the making a plugin.
Do I need to initialize something to show the links page?
There is no links manager in the admin_menu of Wordpress 3.5.1 anymore. I'm creating a custom add_links_page, and I'm having a hard time with the making a plugin.
Do I need to initialize something to show the links page?
Share Improve this question edited Jun 14, 2013 at 1:03 fuxia♦ 107k38 gold badges255 silver badges459 bronze badges asked Jun 14, 2013 at 0:41 Franz NoelFranz Noel 2715 silver badges16 bronze badges 1- 1 Maybe you can re-enable the Link Manager via this plugin: wordpress/plugins/link-manager – Sven Commented Jun 14, 2013 at 1:31
3 Answers
Reset to default 10It's commonly activated through:
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
The suggested Link Manager
plugin only contains this code line.
Or go in you wp database, in the (wp_)options table find the option "link_manager_enabled" and change the value from 0 to 1 (option_id should be 86)
To re-enable the link manager, add the following line to your theme's functions.php
file (child theme recommended):
add_filter( 'pre_option_link_manager_enabled', '__return_true' );
本文标签: admin menuHow to reenable the links manager
版权声明:本文标题:admin menu - How to re-enable the links manager? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742064429a2418746.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论