Skip to content
Advertisement

How to check if an element has a class using PHP in WordPress function.php file

I am trying to hide an element on the front-end and remember the user choice by creating a cookie in PHP.

Here is how I have it set up:

I have some HTML and JS scripts inside an HTML widget on the page on the front-end

JavaScript

Then I have written the cookie function inside the function.php of the child theme:

JavaScript

For some reason, the class_exists() PHP function does not work, any idea how this can be achieved?

Advertisement

Answer

With the help of @WillyLi’s answer, I was able to organize my thoughts and modify his code a bit here is what worked for me:

  • I modified the getCookie function declaration and simplified it to one parameter cname.
  • Then I also modified the setCookie and standardized it according to w3school
  • Finally, I wanted the banner to be hidden immediately as the user clicks the button so I added element.style.display = 'none'; to myFunction()

Here is what the final version looks like:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement