shop page problem with wp_head injection
-
Hi,
I have some head injections for printing some meta tags. They all work well for all pages except for the shop page. This is really strange. The code is this:
// meta description add_action( 'wp_head','carlos_head_meta_page_99' ); function carlos_head_meta_page_99() { if (is_page('99')) { ?> <meta name="description" content="Página del catálogo de productos. Taller y Joyería Brieva - Dise?os y Accesorios - Tienda Online" /><?php } } // URL add_action( 'wp_head','carlos_head_meta_url99' ); function carlos_head_meta_url99() { if (is_page('99')) { ?> <meta name="url" content="https://joyeriabrieva.com/tienda" /> <?php } }
Thanks for any ideas
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘shop page problem with wp_head injection’ is closed to new replies.