Skip to content

Instantly share code, notes, and snippets.

@hellofromtonya
Created January 21, 2017 00:51
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 hellofromtonya/c41660c4ef9f8b2dcf676cfe755f0f1a to your computer and use it in GitHub Desktop.
Save hellofromtonya/c41660c4ef9f8b2dcf676cfe755f0f1a to your computer and use it in GitHub Desktop.
PHP Concatenate Challenge
function filter_the_entry_footer_post_meta( $html ) {
$html .= ' [post_terms taxonomy="department"]';
return $html;
}
$content = filter_the_entry_footer_post_meta( '[post_categories]' );
// what is the value of $content?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment