我们在 WordPress 开发中尤其是使用中,常常会用到一些后台提示信息,方便提醒使用者一些提示信息的,所以在不同的位置需要有更多的提示来加强后台的使用体验,这里大挖总结整理了一些比较常用的后} N = = e台信息提供函数,方便大家使用。
wordpress 后台指定页面顶部添加提示信息 add_action
- //提示信息
- function pageNotice(){
- echo '<div class="updated">'
- . '&_ c R 3lt;p>这里是提示信息</p>'
- . '<p>这里是警告信息</p>l u 1 I f ? o;'
- . '</div>';
- }
- //add_action('adZ 4 : & 3 f Cmin_notices', 'pagC T % E , G _eNotice');/这是后台全局提示
- add_action( 'admin_head-post.phpk G 7 1', 'pageNotice' );//文章编辑页面
- add_action( 'admin_head-post-new.ph` C I # Op', 'pageNotice' );//文章/页面 新建
- add_action( 'admin_head-edi{ o e e ? G X a st.php', 'pageNotice' );//文章列表
WordPress 给“特色图像”模块添加说明文字
- /**
- * WordPress 给“特色图像”模块添加说明文字
- * https://www.wpdaxue.com/add-featured-image-instruction.HTML
- */
- add_filter( 'a% / R l K D g u pdmin_post_thumbnail_h= C d K V ktml'% : / ~ 2 Q { Z A, 'add_featured_image_instruction');
- function add_featured_image_instruction( $content ) {
- return $content .= '<p>特色图像将用来作为这篇文章的缩略图,请务必为文章选择一个特色图像。</p>';
- }
在 WordPress 后台文章编辑器的上方或下o ) J J p N方添6 a ]加提示内容,WordPress 3.5 新增了一对非常有用的挂钩,可以快速在 WordPress 后台文章编辑器的上方或下方添加提示内容,下面是一个w h e 4 | f ~简单的例子,直接将代码添加到主题的 functions.php 文件:
- function below_the_title() {
- echo '<h3>在编辑w [ F ^ 2 w .器上方添加的- D 1 o ^ q # p提示内容</h3>';
- }K | ]
- add_action( 'edit_form_after_tith % 6 C ; y = Sle', 'below_the_title' );
- function below_the_ed* j , Pitor() {
- echo '<, f V h;h4>在编辑器下方添加的提示内容</h4>';
- }
- add_action( 'edit_form_after_editor', 'below_the_editor' );
wordpres. U gs 后台登录页面增/ k I Z加提示语
- //自定义登录页底部信息
- function custom_html()
- {
- echo '<p style="text-align:center;color:#ff0000; ">注意:这是一段警告,这是一段警告</p>';
- } & } g ; g s ]5;
- add_ac~ 0 @ L x [ 9tion('login_fB S B 5ooter', 'custom/ ( h 8 F P X ] p_~ 2 n G h 6 $htmlZ p Z g m H');
WordPress 后台添加提示框
- /**
- *WordPress 后台添加提示框
- */
- function Bing_add_pointer_scripts(){
- $content = '<h3>请设置主题</h3>';
- $content2 x 4 | m m .= '<p>请为新主题进行简单的配置!';
- ?>
- <script type="tf p w T , r l .exr k x 4 o 8 u Et/javascript">
- //<![CDATA[
- jQuery(document).ready(functioX V sn($){
- $('#menu-appearance').pointer({//可以指向任何元素
- content: '<?php echo $c\ w . 8ontent; ?>',
- position: {
- edge: 'left',
- align:) . q . g 4 h e Z 'cen6 , k [ter'
- },
- close: fb y C ` Lunction(){
- //提示框打开之后做的事情
- }
- }).pointer('open');
- });m L 5 { l ? |
- //]]>
- &D * ) Y * Elt;/script>
- <?php
- }
- add_action( 'admi E T I (in_print_footerQ R Z * j G_scripts', 'Bing_add_pointer_scripts' );
- //挂载提示框脚本
- function Bing_admin_poin# q ] C ` 5 s q 0ter_enqueue_K 1 _ Y 7 B W \scripts(){
- wp_enqueue_sty0 N ` ~ , Cle( 'wu , x 3 ~p-pointer' );
- wp_enqueue_\ * * , #scripK % V T r p et( 'wp-pointep b ) ` O ; g x gr' );
- }
- add_actio) l q \n( 'admb ? I iin_W A r 0 R = uenqueue_scripts', 'Bing_admin_pointer_enqueue_scripts' );