Inserire questo codice nel functions.php del vostro tema per impostare noindex, nofollow alle pagine relative all’ordinamento del catalogo prodotti
add_action( 'wp_head', 'cp_prevent_indexing_orderby' );
if(!function_exists('cp_prevent_indexing_orderby')){function cp_prevent_indexing_orderby () {if (isset($_GET['orderby'])){echo '';}}}