• Can I open the page with the parameters in a new window?

    function my_conditional_themes_setup() {
    Conditional_Themes_Manager::register( ‘loose’, function() {
    global $is_IE;
    return (bool) $is_IE;
    } );
    }
    add_action( ‘plugins_loaded’, ‘my_conditional_themes_setup’, 100 );

    How to save this function so that it opens in a new window and in every browser?

  • The topic ‘can I open the page in a new window?’ is closed to new replies.