Skip to content

Instantly share code, notes, and snippets.

@jamiejohnsonkc
Last active October 16, 2019 14:02
Show Gist options
  • Save jamiejohnsonkc/86fa80c38b8e6a5f0e0bc0a4cfe2f931 to your computer and use it in GitHub Desktop.
Save jamiejohnsonkc/86fa80c38b8e6a5f0e0bc0a4cfe2f931 to your computer and use it in GitHub Desktop.
enqueue wp change class #php #wp #function #logo #custom-logo
function understrap_change_logo_class($html)
{
$html = str_replace('class="custom-logo"', 'class="style-svg img-fluid"', $html);
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment