I want to add a custom “all posts by author” by authors name. How?
Attach a filter that only outputs a different link when you’re on single.php: function wpse25725_author_posts( $link ) { // abort if not on single.php if ( ! is_single() ) return; // modify this as you like – so far exactly the same as in the original core function // if you simply want to add … Read more