Hi,
I found the documentation to create a tagcloud.
But how can i sort in an alphabetic order the tag-items in the new array created by the pluck method? The method sortBy is not running for me.
Thank you.
Hi,
I found the documentation to create a tagcloud.
But how can i sort in an alphabetic order the tag-items in the new array created by the pluck method? The method sortBy is not running for me.
Thank you.
This can be solved with a small addition:
// fetch all tags
$tags = $page->children()->listed()->pluck('tags', ',', true);
sort($tags);
Thank you.