Skip to content

Instantly share code, notes, and snippets.

@jonathanbossenger
Created August 2, 2019 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonathanbossenger/381ffea8e2577de4eb1f19f48373dc51 to your computer and use it in GitHub Desktop.
Save jonathanbossenger/381ffea8e2577de4eb1f19f48373dc51 to your computer and use it in GitHub Desktop.
Add a custom feed item author
<?php
add_filter('ssp_feed_item_author', 'ssp_my_custom_feed_item_author');
function ssp_my_custom_feed_item_author(){
return 'John Smith - CEO';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment