切换到SSL菜单后,链接将在新窗口中打开

时间:2016-04-16 19:51:06

标签: javascript php jquery wordpress ssl

难倒!我在我的网站上添加了SSL。一切似乎都井然有序,但现在菜单项(使用带有wordpress的Uber菜单插件)在新窗口中打开。

我发现了两件事。当在functions.php文件中加载的这个文件是http与https时,链接会根据需要在同一个窗口中打开,但它会破坏我在主页上的一些滑块。

https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js

更改为https时 - 滑块有效,但现在链接在新窗口中打开。

寻求任何帮助!

函数文件代码

   function modify_jquery() {
    if (!is_admin()) {
        // comment out the next two lines to load the local copy of jQuery
        wp_deregister_script('jquery');
        wp_register_script('jquery', 
'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js', false, '1.8.2');
        // wp_enqueue_script('jquery');
    }
}
add_action('init', 'modify_jquery');

网站:https://www.sojournercenter.org/

编辑:我注意到某个地方正在运行此文件时向我的所有链接添加“_blank”标记。但它似乎不是那个文件,而是另一个jquery文件。至少我认为!

0 个答案:

没有答案