-
john-smith が更新を投稿しました
を変更するにはどうすればよいですか?
最初の読み込み時
フィルタフックの値を変更するには、WordPressリポジトリから無料のYITHプラグインをダウンロードしますか?に設定しようとしています。
20
以下のコードを使用してください:add_filter( 'yith_wcan_terms_on_first_loading', function( $number ) { $number = 20; return $number; }, 10, 1 );
I’ve also attempted to execute this code within the
init
そしてプラグインロード
action hooks, but it still doesn’t seem to work. What could be the issue, and how can I ensure the filter works as expected?