自定义Wordpress管理页脚
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义Wordpress管理页脚相关的知识,希望对你有一定的参考价值。
Add to bottom of your theme's functions.php file
// Admin footer modification function remove_footer_admin () { echo '<span id="footer-thankyou">Developed By:<a href="http://www.yourdomain.com" target="_blank">Your Company Name</a></span>'; } add_filter('admin_footer_text', 'remove_footer_admin');
以上是关于自定义Wordpress管理页脚的主要内容,如果未能解决你的问题,请参考以下文章