Display Content Custon just in Shop Page
-
Hello, i can help for display content in shop page exemple: in /products
Show the text =”text Custom!”.
And others pages
Not Display.
I am test with is_page tag and ID and not work
And test with this code:
function my_custon( $content ) { if ( is_shop() ) { $content .= echo 'Text here!'; } return $content; } add_filter( 'the_content', 'my_custon' );
but the problem is the function “the_content” is content of all pages, and when active the content all pages in wordpress if hidden.
Yours have the soluctions?
Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Display Content Custon just in Shop Page’ is closed to new replies.