Created
December 28, 2019 17:52
-
-
Save PiotrKrzyzek/ecf511493bbdbc1608d97741d0d90a57 to your computer and use it in GitHub Desktop.
Add custom meta properties to the WP headers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function add_meta_tags() { | |
echo '<meta name="meta_name" content="meta_value" />'; | |
} | |
add_action('wp_head', 'add_meta_tags'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment