• I’m sure I’m missing something super-obvious, but I am customizing a Genesis framework theme on my website and obviously don’t want to display it until it’s all ready to go. How do I go about doing this while still displaying my current theme?
    Thanks!

Viewing 1 replies (of 1 total)
  • Vamsi

    (@mannemvamsi)

    One idea I can think of is.. check for the user, if the user is you, then load your changes else as usual

    if ( get_current_user_id() == 1) {
       // Where 1 is my userid
      // My new changes
    }
    else {
       ...
       //  existing code!!
       ...
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How To Customize New Template Without Disrupting Site?’ is closed to new replies.