Authors List
Easily display a list or grid of post authors (or any other user role) and links to their post archives page using a shortcode. Backend UI can be used to change all the options. Introducing New Authors List Pro The free version offers a large amount of features for free, and the PRO version comes with even more amazing features for your authors list. Some of those features are Styler, Search and Filters. Styler allows easy change of color/typography/spacing on any of the elements in the authors list. Filters allow you to create a better organization of the authors list. Search allows your visitors to search for specific users. Click here to get the PRO version! Shortcode All the options are available in the WP admin but you can also use a plain shortcode (as it was in version 1 of the plugin). The shortcode is [authors_list] and accepts the following attributes. style (1,2,3) columns (2,3,4) columns_direction ( horizontal, vertical ) avatar_size (any number, example 500) amount (any number, no limit by default) show_title (yes,no) show_count (yes,no) show_bio (yes,no) show_link (yes,no) orderby ( post_count, post_date, ID, login, nicename, email, url, registered, display_name, first_name, last_name ) order ( ASC, DESC ) skip_empty ( yes, no ) minimum_posts_count ( any number ) bio_word_trim ( any number, leave empty for no trim ) only_authors ( yes, no ) exclude ( user IDs separated by comma, example 1,3,4 ) include ( user IDs separated by comma, example 1,3,4 ) roles ( roles separated by comma, example administrator,editor ) latest_post_after ( for example if set to 7 it will only show authors that have posts published in the past 7 days ) name_starts_with ( limit to authors whose display name starts with specific characters ) first_name_starts_with ( limit to authors whose first name starts with specific characters ) last_name_starts_with ( limit to authors whose last name starts with specific characters ) categories ( category IDs separated by comma, example 1,3,4 ) terms ( term IDs separate by comma, example 1,3,4 ) taxonomy ( name of a taxonomy, for example post_tag ) title_element (the element that wraps the name of the user/author, defaults to div, can be any element, for example h2) link_count (yes, no) Example usage with attributes: [authors_list style="2" columns="2" amount="4" show_count="no"] There are additional attributes for custom content before and after each element: before_avatar before_title before_count before_bio before_link after_avatar after_title after_count after_bio after_link Example usage with attributes: [authors_list before_title="My custom content"] These before/after attributes also support dynamic user/author meta fields using {al:INSERT_FIELD_NAME} Example usage: [authors_list before_title="My first name is {al:first_name}"] They also support some dynamic output functionality. Currently supports displaying posts links and social links (Yoast SEO needed): Example usage for posts links: [authors_list after_title="{alf:posts}"] [authors_list after_title="{alf:posts type=plain amount=5}"] Example usage for social links: [authors_list after_title="{alf:social}"] Example usage for roles: [authors_list after_title="{alf:role}"] Example usage for link (the “to” parameter accepts foollowing values: archive bbpress_profile buddypress_profile): [authors_list after_title="{alf:link to=bbpress_profile}"] Social Icons SVGs by FontAwesome are licensed under CC BY 4.0 What’s Next If you like this plugin, then please consider leaving us a rating / review. This plugin is maintained by WPKube, a WordPress resource site, where you can learn from our in-depth guides such as What is WordPress, How to choose a WordPress hosting, & more! Our Other Projects Optin Forms: Simple and easy to use plugin for creating optin forms, works with most well known autoresponder services. Simple Basic Contact Form: Light-weight contact form plugin Subscribe to Comments Reloaded: Email Notification plugin for Comments Advanced Excerpts: This plugin adds several improvements to WordPress’ default way of creating excerpts.
Top keywords
- authors19×2.84%
- example16×2.40%
- list14×2.10%
- name14×2.10%
- authors list13×1.95%
- title11×1.65%
- count7×1.05%
- example usage7×1.05%
- usage7×1.05%
- yes7×1.05%
- link6×0.90%
- name starts6×0.90%
WP Cassify
If you’re happy with this plugin : As a reward for my efforts, I would like to receive T-shirts (or other goodies) as gifts from the universities or companies that use it. My size is L. Best regards. This Apereo CAS authentication plugin has no phpCas library dependency. This is not only an authentication plugin. You can build custom authorization rules according to cas user attributes populated. If user don’t exist in WordPress database, it can be created automatically. There are many features. You can customize everything. Website https://wpcassify.wordpress.com/ Development and release environment This plugin is now developed and tested from a github repository. You can find it here : https://github.com/WP-Cassify/wp-cassify-develop Don’t hesitate to contribute to this project. You can fork it and make pull requests ! Requirements Require at least PHP version 7.0 Require at least PHP CURL package Features included SLO (Single Log Out) support (thanks to dedotombo and me) Adding NCONTAINS operator (thanks to blandman) Fix bug on Gateway mode (autologin) (thanks to dedotombo again). Now it’s now necessary to hack theme files to fire it. Adding option logout on authentication failure to not disturb users Initialize PHP session at a later stage (on wp_loaded not on init) Adding some customs hooks and filters. Tested with Apereo CAS Server version 7.3.5 Compatible with CAS Protocol version 2 and 3 Automatic user creation if not exist in WordPress database. Synchronize WordPress User metas with CAS User attributes. Add support for multivaluate cas user fields. Now multivaluate fields can be serialized to be stored in custom WP User meta. Backup / Restore plugin configuration options settings You can choose CAS User attributes you want to populate. Then you can access them via PHP Session. Be careful, to access to CAS User Attributes from your theme file (from 1.8.4), use code below : wp_cassify_get_cas_user_datas() ); } ?> Set up WordPress Roles to User according to CAS User attributes. If plugin is network activated, you can define User Role Rule scope by blog id. Authorization rule editor. Compatible with WordPress Access Control Plugin. Manage URL White List to bypass CAS Authentication on certain pages. Much simpler bypass authentication with post method provided by Susan Boland (See online documentation). Create wordpress authentication form with redirect attribute like this (works only if URL bypass is enabled in settings) : true, 'remember' => true, 'redirect' => site_url( '/?wp_cassify_bypass=bypass' ), 'form_id' => 'loginform', 'id_username' => 'user_login', 'id_password' => 'user_pass', 'id_remember' => 'rememberme', 'id_submit' => 'wp-submit', 'label_username' => __( 'Username' ), 'label_password' => __( 'Password' ), 'label_remember' => __( 'Remember Me' ), 'label_log_in' => __( 'Log In' ), 'value_username' => '', 'value_remember' => false ); wp_login_form( $args ); ?> Receive email notifications when trigger is fired (after user account creation, after user login/logout). Define notifications rules based on user attributes values. Purge user roles before applying user role rules. Define user account expiration rules bases on CAS User attributes. Network activation allowed You can set Service Logout URL (Needs to have CAS Server with followServiceRedirects option configured). Add support for web application hosted behind a reverse proxy. (Thanks to franck86) Add custom hooks : wp_cassify_after_cas_authentication, wp_cassify_before_auth_user_wordpress, wp_cassify_before_redirect, wp_cassify_after_redirect. (See online documentation) Custom filter to perform custom cas server response parsing. Hook name : wp_cassify_custom_parsing_cas_xml_response (See online documentation) Custom shortcode to generate CAS login/logout link into your blog. (See online documentation) Debug settings, dump last xml cas server response. Detect if user has already authenticated by CAS from your public pages and perform auto-login with gateway mode Add ‘-IN’ and ‘-NOTIN’ operators to process array attributes values returned from CAS. When you have : $cas_user_datas['title'] = array( 'Student', 'Professor' ); Then you can use : (CAS{title} -IN "professor")