版本号旁边的管理面板页脚中的回显字符串

时间:2015-10-23 作者:iSaumya

有谁能帮我看看如何在wp admin仪表板页脚显示的版本号旁边显示一些东西,比如说“Hello World”?

我已经试过了action 已命名admin_footer 然后通过css,我将其浮动在右侧,但它不会显示为单个字符串,而是彼此重叠。

这是我试图做的视觉表达。

这是默认的wp admin页脚右侧:

enter image description here

以下是我想要的:

enter image description here

以下是发生在add_action admin_footer 然后css 对于float: right;:

enter image description here

我们将非常感谢您的帮助。

1 个回复
最合适的回答,由SO网友:s_ha_dum 整理而成

If you look at the source:

40          <p id="footer-upgrade" class="alignright">
41                  <?php
42                  /**
43                   * Filter the version/update text displayed in the admin footer.
44                   *
45                   * WordPress prints the current version and update information,
46                   * using core_update_footer() at priority 10.
47                   *
48                   * @since 2.3.0
49                   *
50                   * @see core_update_footer()
51                   *
52                   * @param string $content The content that will be printed.
53                   */
54                  echo apply_filters( \'update_footer\', \'\' );
55                  ?>
56          </p>
57          <div class="clear"></div>
58  </div>
你应该看到你需要的过滤器,update_footer.

像这样的东西应该可以满足您的需要:

function test_update_footer_wpse_206382() {
  return \'|| Hello World\';
}
add_filter( \'update_footer\', \'test_update_footer_wpse_206382\' );
在核心代码之前admin_footer_text 你可能会感兴趣的。