mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
225 B
Text
8 lines
225 B
Text
add_filter( 'comments_open', 'wc_force_enable_reviews', 9999, 2 );
|
|
|
|
function wc_force_enable_reviews( $enable, $post_id ) {
|
|
if ( 'product' === get_post_type( $post_id ) ) {
|
|
$enable = true;
|
|
}
|
|
return $enable;
|
|
}
|