id !== $ata_settings_page ) { return; } // Set the text in the help sidebar. $screen->set_help_sidebar( /* translators: 1: Plugin support site link. */ '

' . sprintf( __( 'For more information or how to get support visit the support site.', 'add-to-all' ), esc_url( 'https://ajaydsouza.com/support/' ) ) . '

' . /* translators: 1: WordPress.org support forums link. */ '

' . sprintf( __( 'Support queries should be posted in the WordPress.org support forums.', 'add-to-all' ), esc_url( 'https://wordpress.org/support/plugin/add-to-all' ) ) . '

' . '

' . sprintf( /* translators: 1: Github issues link, 2: Github plugin page link. */ __( 'Post an issue on GitHub (bug reports only).', 'add-to-all' ), esc_url( 'https://github.com/ajaydsouza/add-to-all/issues' ), esc_url( 'https://github.com/ajaydsouza/add-to-all' ) ) . '

' ); // Add third party help tab. $screen->add_help_tab( array( 'id' => 'ata-settings-third-party-help', 'title' => esc_html__( 'Third Party', 'add-to-all' ), 'content' => '

' . esc_html__( 'This screen provides the settings for configuring the integration with third party scripts.', 'add-to-all' ) . '

' . '

' . sprintf( /* translators: 1: Google Analystics help article. */ esc_html__( 'Google Analytics tracking can be found by visiting this %s', 'add-to-all' ), '' . esc_html__( 'article', 'add-to-all' ) . '.' ) . '

', '

' . esc_html__( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.', 'add-to-all' ) . '

', ) ); // Add Header help tab. $screen->add_help_tab( array( 'id' => 'ata-settings-header-help', 'title' => esc_html__( 'Header', 'add-to-all' ), 'content' => '

' . esc_html__( 'This screen allows you to control what content is added to the header of your site.', 'add-to-all' ) . '

' . '

' . esc_html__( 'You can add custom CSS or HTML code. Useful for adding meta tags for site verification, etc.', 'add-to-all' ) . '

' . '

' . esc_html__( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.', 'add-to-all' ) . '

', ) ); // Add Content help tab. $screen->add_help_tab( array( 'id' => 'ata-settings-content-help', 'title' => esc_html__( 'Content', 'add-to-all' ), 'content' => '

' . esc_html__( 'This screen allows you to control what content is added to the content of posts, pages and custom post types.', 'add-to-all' ) . '

' . '

' . esc_html__( 'You can set the priority of the filter and choose if you want this to be displayed on either all content (including archives) or just single posts/pages.', 'add-to-all' ) . '

' . '

' . esc_html__( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.', 'add-to-all' ) . '

', ) ); // Add Footer help tab. $screen->add_help_tab( array( 'id' => 'ata-settings-footer-help', 'title' => esc_html__( 'Footer', 'add-to-all' ), 'content' => '

' . esc_html__( 'This screen allows you to control what content is added to the footer of your site.', 'add-to-all' ) . '

' . '

' . esc_html__( 'You can add custom HTML code. Useful for adding tracking code for analytics, etc.', 'add-to-all' ) . '

' . '

' . esc_html__( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.', 'add-to-all' ) . '

', ) ); // Add Feed help tab. $screen->add_help_tab( array( 'id' => 'ata-settings-feed-help', 'title' => esc_html__( 'Feed', 'add-to-all' ), 'content' => '

' . esc_html__( 'This screen allows you to control what content is added to the feed of your site.', 'add-to-all' ) . '

' . '

' . esc_html__( 'You can add copyright text, a link to the title and date of the post, and HTML before and after the content', 'add-to-all' ) . '

' . '

' . esc_html__( 'You must click the Save Changes button at the bottom of the screen for new settings to take effect.', 'add-to-all' ) . '

', ) ); /** * Action to add more help settings. * * @since 1.2.0 */ do_action( 'ata_settings_help', $screen ); }