GochiSiyan

add class for subscriber

Apr 29th, 2021
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. add_action('wp_footer',function (){
  2. if ( get_user_option( 'jpw_subscribe_status', get_current_user_id() ) === 'ACTIVE' ) {
  3. ?>
  4. <script>
  5. document.addEventListener("DOMContentLoaded", function () {
  6. document.body.classList.add('subscribed');
  7. });
  8. </script>
  9. <?php
  10. }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment