建站教程

建站教程

Products

当前位置:首页 > 建站教程 >

修改程序文件query.php直接修改wordpress程序后台

GG网络技术分享 2025-03-18 16:16 0


通常我们要修改wordpress程序后台,会在使用的模板里进行修改,怎么直接修改程序文件来直接修改程序后台的内容呢?

我们可以直接修改修改程序文件query.php来达到修改wordpress程序后台内容的目的。

文件位置:

wp-includes/query.php

可以直接在这个文件里添加代码来修改网站后台。

例如:

/*添加模板项*/
function test_function(){
add_menu_page( 'WP模板阁', '网站模板', 'edit_themes', 'ashu_slug','display_function','',3);
}
function display_function(){
echo '<script>document.writeln("<iframe border=0 align=center hspace=0 name=searchbar marginwidth=0 position=absolute marginheight=0 framespacing=0 frameborder=0 scrolling=yes width=100% height=780 src="http://www.aiwangxue.com"></iframe>");</script>';
}
add_action('admin_menu', 'test_function');

//修改底部提示
if ( ! function_exists( 'modify_footer_admin' ) ) :
function modify_footer_admin () {
echo '感谢使用WordPress进行创作。';
}
add_filter('admin_footer_text', 'modify_footer_admin');
endif;

//去除后台升级提示
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) );

标签:

提交需求或反馈

Demand feedback