Parameters
$tag
WP_Termrequired- Term object.
Source
public function column_links( $tag ) {
$count = number_format_i18n( $tag->count );
if ( $count ) {
$count = "<a href='link-manager.php?cat_id=$tag->term_id'>$count</a>";
}
return $count;
}
CARVIEW |
$tag
WP_Termrequiredpublic function column_links( $tag ) {
$count = number_format_i18n( $tag->count );
if ( $count ) {
$count = "<a href='link-manager.php?cat_id=$tag->term_id'>$count</a>";
}
return $count;
}
Uses | Description |
---|---|
number_format_i18n()wp-includes/functions.php | Converts float number to format based on the locale. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.