Replace see with @link

This commit is contained in:
Tiago Noronha 2017-08-06 23:44:38 +01:00
parent ee3aa735cf
commit bf725e430f
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
/** /**
* WooCommerce setup function. * WooCommerce setup function.
* *
* See: https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/ * @link https://docs.woocommerce.com/document/third-party-custom-theme-compatibility/
* *
* @return void * @return void
*/ */
@ -40,7 +40,7 @@ add_action( 'wp_enqueue_scripts', '_s_woocommerce_scripts' );
* Removing the default WooCommerce stylesheet and enqueing your own will * Removing the default WooCommerce stylesheet and enqueing your own will
* protect you during WooCommerce core updates. * protect you during WooCommerce core updates.
* *
* See: https://docs.woocommerce.com/document/disable-the-default-stylesheet/ * @link https://docs.woocommerce.com/document/disable-the-default-stylesheet/
*/ */
add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' ); add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' );