移除或自定义 WordPress 仪表盘欢迎面板

如果这世上真有奇迹,那只是努力的另一个名字。人生从来没有真正的绝境。无论遭受多少艰辛,无论经历多少苦难,只要一个人的心中还怀着一粒信念的种子,那么总有一天,他就能走出困境,让生命重新开花结果。

第一次登录 WordPress 后台仪表盘页面,默认都会显示 WordPress 的欢迎面板:

如果我们要移除这个面板,在主题的 functions.php 中添加下面的代码即可:

1
2
//移除 WordPress 仪表盘欢迎面板
remove_action('welcome_panel', 'wp_welcome_panel');

//移除 WordPress 仪表盘欢迎面板 remove_action('welcome_panel', 'wp_welcome_panel');

或者你也可以通过下面的代码来自定义欢迎面板的内容,同样是添加到主题的 functions.php 即可:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
 * 自定义 WordPress 仪表盘欢迎面板
 * https://www.wpdaxue.com/remove-or-customize-wordpress-welcome-panel.html
*/
function rc_my_welcome_panel() {
	?>
	<script type="text/javascript">
		/* 隐藏默认的欢迎信息 */
		jQuery(document).ready( function($) 
		{
			$('div.welcome-panel-content').hide();
		});
	</script>
	<!-- 添加自定义信息 -->
	<div class="custom-welcome-panel-content">
		<h3><?php _e( 'Welcome to your custom dashboard Message!' ); ?></h3>
		<p class="about-description"><?php _e( 'Here you can place your custom text, give your customers instructions, place an ad or your contact information.' ); ?></p>
		<div class="welcome-panel-column-container">
			<div class="welcome-panel-column">
				<h4><?php _e( "Let's Get Started" ); ?></h4>
				<a class="button button-primary button-hero load-customize hide-if-no-customize" rel="nofollow noopener noreferrer" href="http://www.trickspanda.com"><?php _e( 'Call me maybe !' ); ?></a>
				<p class="hide-if-no-customize"><?php printf( __( 'or, <a rel="nofollow noopener noreferrer" href="%s">edit your site settings</a>' ), admin_url( 'options-general.php' ) ); ?></p>
			</div>
			<div class="welcome-panel-column">
				<h4><?php _e( 'Next Steps' ); ?></h4>
				<ul>
					<?php if ( 'page' == get_option( 'show_on_front' ) && ! get_option( 'page_for_posts' ) ) : ?>
						<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-edit-page">' . __( 'Edit your front page' ) . '</a>', get_edit_post_link( get_option( 'page_on_front' ) ) ); ?></li>
						<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-add-page">' . __( 'Add additional pages' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li>
					<?php elseif ( 'page' == get_option( 'show_on_front' ) ) : ?>
						<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-edit-page">' . __( 'Edit your front page' ) . '</a>', get_edit_post_link( get_option( 'page_on_front' ) ) ); ?></li>
						<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-add-page">' . __( 'Add additional pages' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li>
						<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-write-blog">' . __( 'Add a blog post' ) . '</a>', admin_url( 'post-new.php' ) ); ?></li>
					<?php else : ?>
						<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-write-blog">' . __( 'Write your first blog post' ) . '</a>', admin_url( 'post-new.php' ) ); ?></li>
						<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-add-page">' . __( 'Add an About page' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li>
					<?php endif; ?>
					<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-view-site">' . __( 'View your site' ) . '</a>', home_url( '/' ) ); ?></li>
				</ul>
			</div>
			<div class="welcome-panel-column welcome-panel-last">
				<h4><?php _e( 'More Actions' ); ?></h4>
				<ul>
					<li><?php printf( '<div class="welcome-icon welcome-widgets-menus">' . __( 'Manage <a rel="nofollow noopener noreferrer" href="%1$s">widgets</a> or <a rel="nofollow noopener noreferrer" href="%2$s">menus</a>' ) . '</div>', admin_url( 'widgets.php' ), admin_url( 'nav-menus.php' ) ); ?></li>
					<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li>
					<li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'http://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li>
				</ul>
			</div>
		</div>
		<div class="">
			<h3><?php _e( 'If you need more space' ); ?></h3>
			<p class="about-description">Create a new paragraph!</p>
			<p>Write your custom message here.</p>
		</div>
	</div>
	<?php
}
add_action( 'welcome_panel', 'rc_my_welcome_panel' );

/** * 自定义 WordPress 仪表盘欢迎面板 * https://www.wpdaxue.com/remove-or-customize-wordpress-welcome-panel.html */ function rc_my_welcome_panel() { ?> <script type="text/javascript"> /* 隐藏默认的欢迎信息 */ jQuery(document).ready( function($) { $('div.welcome-panel-content').hide(); }); </script> <!-- 添加自定义信息 --> <div class="custom-welcome-panel-content"> <h3><?php _e( 'Welcome to your custom dashboard Message!' ); ?></h3> <p class="about-description"><?php _e( 'Here you can place your custom text, give your customers instructions, place an ad or your contact information.' ); ?></p> <div class="welcome-panel-column-container"> <div class="welcome-panel-column"> <h4><?php _e( "Let's Get Started" ); ?></h4> <a class="button button-primary button-hero load-customize hide-if-no-customize" rel="nofollow noopener noreferrer" href="http://www.trickspanda.com"><?php _e( 'Call me maybe !' ); ?></a> <p class="hide-if-no-customize"><?php printf( __( 'or, <a rel="nofollow noopener noreferrer" href="%s">edit your site settings</a>' ), admin_url( 'options-general.php' ) ); ?></p> </div> <div class="welcome-panel-column"> <h4><?php _e( 'Next Steps' ); ?></h4> <ul> <?php if ( 'page' == get_option( 'show_on_front' ) && ! get_option( 'page_for_posts' ) ) : ?> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-edit-page">' . __( 'Edit your front page' ) . '</a>', get_edit_post_link( get_option( 'page_on_front' ) ) ); ?></li> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-add-page">' . __( 'Add additional pages' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li> <?php elseif ( 'page' == get_option( 'show_on_front' ) ) : ?> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-edit-page">' . __( 'Edit your front page' ) . '</a>', get_edit_post_link( get_option( 'page_on_front' ) ) ); ?></li> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-add-page">' . __( 'Add additional pages' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-write-blog">' . __( 'Add a blog post' ) . '</a>', admin_url( 'post-new.php' ) ); ?></li> <?php else : ?> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-write-blog">' . __( 'Write your first blog post' ) . '</a>', admin_url( 'post-new.php' ) ); ?></li> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-add-page">' . __( 'Add an About page' ) . '</a>', admin_url( 'post-new.php?post_type=page' ) ); ?></li> <?php endif; ?> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-view-site">' . __( 'View your site' ) . '</a>', home_url( '/' ) ); ?></li> </ul> </div> <div class="welcome-panel-column welcome-panel-last"> <h4><?php _e( 'More Actions' ); ?></h4> <ul> <li><?php printf( '<div class="welcome-icon welcome-widgets-menus">' . __( 'Manage <a rel="nofollow noopener noreferrer" href="%1$s">widgets</a> or <a rel="nofollow noopener noreferrer" href="%2$s">menus</a>' ) . '</div>', admin_url( 'widgets.php' ), admin_url( 'nav-menus.php' ) ); ?></li> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-comments">' . __( 'Turn comments on or off' ) . '</a>', admin_url( 'options-discussion.php' ) ); ?></li> <li><?php printf( '<a rel="nofollow noopener noreferrer" href="%s" class="welcome-icon welcome-learn-more">' . __( 'Learn more about getting started' ) . '</a>', __( 'http://codex.wordpress.org/First_Steps_With_WordPress' ) ); ?></li> </ul> </div> </div> <div class=""> <h3><?php _e( 'If you need more space' ); ?></h3> <p class="about-description">Create a new paragraph!</p> <p>Write your custom message here.</p> </div> </div> <?php } add_action( 'welcome_panel', 'rc_my_welcome_panel' );

参考资料:http://www.wpexplorer.com/custom-wordpress-welcome-message/

以上就是移除或自定义 WordPress 仪表盘欢迎面板。人一辈子也无法心心相印,他们孤独的只剩下相印,他们孤独的只剩下肉体和金钱的交换了。所以,请等待那个对你生命有特殊意义的人。更多关于移除或自定义 WordPress 仪表盘欢迎面板请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
WordPress站点Gravatar头像前后台不显示的如何解决办法

WordPress做公司官网好吗?会不会显得档次很低?

WordPress主题需要支持https吗?WordPress站点如何如何实现https?

WordPress站点的页面/标签/分类URL地址如何添加.html?

WordPress站点更换了域名后数据库应该如何操作替换新旧域名?