Merge pull request #17787 from mensmaximus/patch-1

Fix for #17778
This commit is contained in:
Mike Jolley 2017-11-18 18:25:10 +00:00 committed by GitHub
commit 93a3256999
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -827,7 +827,7 @@ class WC_Admin_Post_Types {
if ( $post && absint( $shop_page_id ) === absint( $post->ID ) ) { if ( $post && absint( $shop_page_id ) === absint( $post->ID ) ) {
echo '<div class="notice notice-info">'; echo '<div class="notice notice-info">';
echo '<p>' . sprintf( wp_kses_post( __( 'This is the WooCommerce shop page. The shop page is a special archive that lists your products. <a href="%s">You can read more about this here</a>.', 'woocommerce' ), 'https://docs.woocommerce.com/document/woocommerce-pages/#section-4' ) ) . '</p>'; echo '<p>' . sprintf( wp_kses_post( __( 'This is the WooCommerce shop page. The shop page is a special archive that lists your products. <a href="%s">You can read more about this here</a>.', 'woocommerce' ) ), 'https://docs.woocommerce.com/document/woocommerce-pages/#section-4' ) . '</p>';
echo '</div>'; echo '</div>';
} }
} }