Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created July 5, 2022 16:42
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 tdmrhn/88088552d4de21a86c23003c1ad364f3 to your computer and use it in GitHub Desktop.
Save tdmrhn/88088552d4de21a86c23003c1ad364f3 to your computer and use it in GitHub Desktop.
Blocksy Get Site Name/Title with Shortcode
<?php
add_shortcode( 'my_site_title', function () {
return get_bloginfo( 'name' );
} );
// Usage; [my_site_title]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment