mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
5 lines
316 B
Text
5 lines
316 B
Text
function move_short_description() {
|
|
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
|
|
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 9 );
|
|
}
|
|
add_action( 'woocommerce_single_product_summary', 'move_short_description' );
|