Skip to content

Instantly share code, notes, and snippets.

@kurudrive
Created March 5, 2020 03:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurudrive/ae47485be2a51295c9542a7747e1289f to your computer and use it in GitHub Desktop.
Save kurudrive/ae47485be2a51295c9542a7747e1289f to your computer and use it in GitHub Desktop.
ExUnitのカスタム分類リストウィジェットに投稿件数を表示する
<?php
add_filter( 'veu_widget_taxlist_args', 'my_veu_widget_taxlist_args' );
function my_veu_widget_taxlist_args( $tax_args ) {
$tax_args['show_count'] = true;
return $tax_args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment