openRow
The WordPress Core openRow function.
Description
openRow( (string) $help = '' );
Parameters (1)
- 0. $help — Optional. (string) =>
''
- The help.
Usage
if ( !function_exists( 'openRow' ) ) { require_once '/admin/header.php'; } // The help. $help = ''; // NOTICE! Understand what this does before running. $result = openRow($help);
Defined (1)
The function is defined in the following location(s).
- /admin/header.php
- function openRow($help = "") {
- if (empty($help)) {
- $help = "You can roll-up or temporarily suppress this box. For more help, click on the friendly Help button near the top right corner of this page, if there is one.";
- }
- else {
- ?>
- <a href="#" class="btn btn-primary btn-help" style="float:right" data-content="<?php echo $help; ?>"><i class="glyphicon glyphicon-question-sign large"></i> Help</a>
- <?php }
- ?>
- <div class="row">
- <?php
- return $help;
- }