1) I would like to make a Page with all my authors listed in their own individual boxes. However currently it only allows me to have the profile of the person who creates the page (hence me)….is there a way around this? I tried plugins that would allow multiple publishers to the page but it didn’t work.
The [wp_biographia author]
shortcode can help you with this. This is documented in the Other Notes section of the README and as part of the plugin’s page on the WordPress Plugin Repository, which says this …
<snip>
If the author attribute is omitted, which is the default, the shortcode assumes it’s being used within the WordPress Loop and will display the Biography Box once for the current post’s, page’s or custom post type’s author.
Specifying a user’s login name as the author attribute overrides this behaviour and allows multi-user sites to use the plugin to create a contributors page, where you use the shortcode as [wp_biographia user="login-name"]
once for each of your site’s authors that you want to appear, replacing “login-name
” with a valid login name for one of your authors.
You call also use the author attribute in wildcard mode, specifying the author’s login name as *
as [wp_biographia author="*"]
; this will then loop over all of the authors that have logins on your site, displaying the Biography Box once for each author, ordered alphabetically by login name.
</snip>
2) Whenever I click the More Posts button it directs me back to the same page instead of to all the other posts of that individual user….am I missing something?
This sounds like a bug that was fixed in v2.4.1 of the plugin, are you running the latest version of the plugin, v2.4.3?
-Gary