Adding html to WooCommerce Store Notice using filters
问题 I am trying to add a div wrapper around my WooCommerce Store Notice using a filter. And I also want to replace the dismiss link with a close icon. This is what I have so far and it doesn't really work how I want it to; add_filter('woocommerce_demo_store', 'demo_store_filter'); function demo_store_filter($text){ return str_replace( '<p class="woocommerce-store-notice demo_store">', '<div class="hello"><p class="woocommerce-store-notice demo_store"></p></div>', $text); } Here is the default