WP_Terms_List_Table::column_slug( WP_Term $tag ): string

In this article

Parameters

$tagWP_Termrequired
Term object.

Return

string

Source

public function column_slug( $tag ) {
	/** This filter is documented in wp-admin/edit-tag-form.php */
	return apply_filters( 'editable_slug', $tag->slug, $tag );
}

Hooks

apply_filters( ‘editable_slug’, string $slug, WP_Term|WP_Post $tag )

Filters the editable slug for a post or term.

User Contributed Notes

You must log in before being able to contribute a note or feedback.