WordPress Codesnippets

add tag to head

				
					
				
			

name=”keywords” content=”‘ + tag + ‘” />’);
</script>

<script type="text/javascript">
document.write('<meta name="keywords" content="' + tag + '" />');
</script>

This code is used to generate a meta keyword tag for a webpage. The code inserts a keyword into the meta tag, which is used by search engines to help determine the topic of the page.

Was this code snippet helpful?
YesNo

Leave a Reply

Your email address will not be published. Required fields are marked *

Programmatically save post

This code creates a WordPress post with the values of the ‘post_title’ and ‘post_content’ variables. It sets the post status to ‘publish’ and the author

Read More »

Create order programmatically

This code creates a new post in the WordPress database with post type ‘shop_order’, post title ‘Order #12345’, post status ‘wc-processing’, and ping status ‘closed’.

Read More »