Updates, Tips & Tricks

Updates as Released, Plus My Personal Collection Of WordPress Best Practices

Add Author Field to bbPress Topics

13 April

Simple snippet to add an Author field to bbPress Topics:

// Add Author field to Topics
add_action( 'init', 'custom_add_author_to_topics' );
function custom_add_author_to_topics() {
    add_post_type_support( 'topic', 'author' );
}
No comments yet.

Leave a Reply