Skip to content

Commit 822a660

Browse files
committed
Updated description strings
1 parent 86bb354 commit 822a660

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/customizer/class-alnp-customizer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function alnp_init_customizer( $wp_customize ) {
6161
'alnp', array(
6262
'title' => esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ),
6363
'capability' => 'edit_theme_options',
64-
'description' => esc_html__( 'Auto Load Next Post increases your pageviews by engaging the site viewers to keep reading your content rather than increasing your bounce rate.', 'auto-load-next-post' ),
64+
'description' => sprintf( esc_html__( '%s increases your pageviews by engaging the site viewers to keep reading your content rather than increasing your bounce rate.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ),
6565
'priority' => 160,
6666
'active_callback' => array( $this, 'is_page_alnp_ready' )
6767
)
@@ -236,7 +236,7 @@ public function alnp_get_customizer_sections() {
236236
'auto_load_next_post_misc' => array(
237237
'capability' => 'edit_theme_options',
238238
'title' => esc_html__( 'Misc Settings', 'auto-load-next-post' ),
239-
'description' => sprintf( __( 'Here you can set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ),
239+
'description' => sprintf( __( 'Here you can set if you want to track pageviews, remove comments and load %s javascript in the footer and disable for mobile users.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ),
240240
),
241241
'auto_load_next_post_events' => array(
242242
'capability' => 'edit_theme_options',
@@ -375,7 +375,7 @@ public function alnp_get_customizer_controls() {
375375
'alnp_comments_container' => array(
376376
'class' => 'WP_Customize_Control',
377377
'label' => esc_html__( 'Comments Container', 'auto-load-next-post' ),
378-
'description' => sprintf( __( 'Used to remove comments if enabled under <strong>%1$sMisc%2$s</strong> settings. Default: %3$s', 'auto-load-next-post' ), '<a href="javascript:wp.customize.section( \'auto_load_next_post_misc\' ).focus();">', '</a>', '<code>div#comments</code>' ),
378+
'description' => sprintf( __( 'Used to remove comments if enabled under %1$sMisc%2$s settings. Default: %3$s', 'auto-load-next-post' ), '<strong><a href="javascript:wp.customize.section( \'auto_load_next_post_misc\' ).focus();">', '</a></strong>', '<code>div#comments</code>' ),
379379
'section' => 'auto_load_next_post_theme_selectors',
380380
'settings' => 'auto_load_next_post_comments_container',
381381
'type' => 'text',

0 commit comments

Comments
 (0)