Tagged: ultimate member
I would like to display the Blog Post Element of the builder on my custom author page.
The a project im working on is with the Ultimate Member Plugin (https://de.wordpress.org/plugins/ultimate-member/), using there member profile for the author page and customizing it. Regards that I would like to use the design on the Enfold Blog Post Element to show on this page.
In the Enfold Author.php I found way to access the author id & name:
$author_id = get_query_var( 'author' );
$name = apply_filters('avf_author_name', get_the_author_meta('display_name', $author_id), $author_id);
besides that the author loop does break my side, meaning it does load extrem long and then does only display the header.
get_template_part( 'includes/loop', 'author' );
Is there any chance to go from there to Query the posts of the author and display them as described before?
More favorit alternatively:
How can I modify the [av_blog] in avia-shortcodes/blog.php to display me all the posts by a author id/name? This would be even better as I could use it more flexible and it has already my styling.
How can I modify
Thanks alot for you help