Přidání bloku s nápovědou
Rozšíření bloku *Help* v záhlaví administrace příspěvku.
/—code php
// Add help text to a specific page
function adding_help_tab() {
$screen = get_current_screen();
if ( ‚post‘ == $screen->post_type ) {
get_current_screen()->add_help_tab( array(
‚id‘ => ‚post‘,
‚title‘ => ( ‚Writing Guidelines’ ),
‚content‘ => ‚Hello, please keep these writing guidelines in mind.
- The content you add must be unique.
- Add relevant and exciting images with your content.
- Remember to add title, alt text, and a descriptive caption for your images.
‚,
) );
}
}
add_action( ‚admin_head‘, ‚adding_help_tab‘ );
\—
[* http://cdn.elegantthemes.com/blog/wp-content/uploads/2015/05/Custom-Help-Text.png *]