当前位置: 首页>>代码示例>>PHP>>正文


PHP WP_Screen::get_help_sidebar方法代码示例

本文整理汇总了PHP中WP_Screen::get_help_sidebar方法的典型用法代码示例。如果您正苦于以下问题:PHP WP_Screen::get_help_sidebar方法的具体用法?PHP WP_Screen::get_help_sidebar怎么用?PHP WP_Screen::get_help_sidebar使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WP_Screen的用法示例。


在下文中一共展示了WP_Screen::get_help_sidebar方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: display

 /**
  * Used this method to add tab and sidebar to the screen
  *
  * @brief Display
  */
 public function display()
 {
     // Merging
     $this->tabs = array_merge($this->tabs, (array) $this->tabs());
     // Add the tabs
     foreach ($this->tabs as $title => $callable_content) {
         $this->addTab($title, $callable_content);
     }
     // Add the sidebar if exists
     $sidebar = $this->sidebar();
     if (!empty($sidebar)) {
         $current = $this->currentScreen->get_help_sidebar();
         $this->currentScreen->set_help_sidebar($current . $sidebar);
     }
 }
开发者ID:wpxtreme,项目名称:wpdk,代码行数:20,代码来源:wpdk-screen-help.php

示例2: applySidebar

 /**
  * Applies the new sidebar contents based on loaded files.
  *
  * This should be called during WordPress's `admin_head` hook.
  *
  * @link https://developer.wordpress.org/reference/hooks/admin_head/
  *
  * @uses Parsedown::text()
  * @uses WP_Screen::get_help_sidebar()
  * @uses WP_Screen::set_help_sidebar()
  *
  * @return @void
  */
 public function applySidebar()
 {
     foreach ($this->_sidebar_files as $file) {
         if (is_readable($file)) {
             $this->_screen->set_help_sidebar($this->_screen->get_help_sidebar() . $this->get_parsedown()->text(file_get_contents($file)));
         }
     }
 }
开发者ID:anhquan0412,项目名称:better-angels,代码行数:21,代码来源:class-wp-screen-help-loader.php


注:本文中的WP_Screen::get_help_sidebar方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。