Skip to content

isabella232/fieldmanager-bylines

 
 

Repository files navigation

Fieldmanager Bylines

A WordPress plugin that allows for multiple authors on a single post and allows for multiple byline types. This plugin is a lightweight alternative to Co-Authors plus and requires Fieldmanager.

Frequently Asked Questions

Custom Byline Types

With this plugin, you can offer more than one type of byline. To do so:

  1. Filter fm_bylines_filter_types to add your custom byline types

    add_filter( 'fm_bylines_filter_types', function( $types ) {
    	return array_merge( $types, array( 'illustrator', 'content-editor' ) );
    } );
  2. Add support for the byline type to the post type, similar to adding in author support

    add_post_type_support( $post_type, array( 'author', 'illustrator', 'content-editor' ) );

About

No description, website, or topics provided.

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 90.5%
  • Shell 7.2%
  • JavaScript 2.3%