Deprecated: 関数 WP_Dependencies->add_data() がバージョン 6.9.0 から非推奨になった引数付きで呼び出されました。IE の条件付きコメントは、対応しているすべてのブラウザで無視されます。 in /home/artws/woo-japan.info/public_html/wp-includes/functions.php on line 6131

Deprecated: 関数 WP_Dependencies->add_data() がバージョン 6.9.0 から非推奨になった引数付きで呼び出されました。IE の条件付きコメントは、対応しているすべてのブラウザで無視されます。 in /home/artws/woo-japan.info/public_html/wp-includes/functions.php on line 6131
コンテンツへスキップ →

number-of-products-per-row

Change number of related products displayed

Add code to your child theme's functions.php file or via a plugin that allows custom functions to be added, such as the Code snippets plugin. Avoid adding custom code directly to your parent theme's functions.php file as this will be wiped entirely when you update the theme.

なお、テーマのコード化により、すべてのテーマで動作するわけではありません。

if ( ! function_exists( 'YOUR_PREFIX_related_products_args' ) ) {
    /**
     * Change number of related products output.
     *
     * @param  array $args The related products args.
     * @return array The modified related products args.
     */
    function YOUR_PREFIX_related_products_args( $args ) {
        if ( ! is_array( $args ) ) {
            $args = array();
        }

        $args['posts_per_page'] = 4; // 4 related products.
        $args['columns']        = 2; // Arranged in 2 columns.

        return $args;
    }
}
add_filter( 'woocommerce_output_related_products_args', 'YOUR_PREFIX_related_products_args', 20 );