WPCF7_Help_Tabs::sidebar()
Метод класса: WPCF7_Help_Tabs{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WPCF7_Help_Tabs = new WPCF7_Help_Tabs(); $WPCF7_Help_Tabs->sidebar();
Код WPCF7_Help_Tabs::sidebar() WPCF7 Help Tabs::sidebar CF7 6.0.5
public function sidebar() { $content = '<p><strong>' . __( 'For more information:', 'contact-form-7' ) . '</strong></p>'; $content .= '<p>' . wpcf7_link( __( 'https://contactform7.com/docs/', 'contact-form-7' ), __( 'Docs', 'contact-form-7' ) ) . '</p>'; $content .= '<p>' . wpcf7_link( __( 'https://contactform7.com/faq/', 'contact-form-7' ), __( 'FAQ', 'contact-form-7' ) ) . '</p>'; $content .= '<p>' . wpcf7_link( __( 'https://contactform7.com/support/', 'contact-form-7' ), __( 'Support', 'contact-form-7' ) ) . '</p>'; $this->screen->set_help_sidebar( $content ); }