最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Load plugin on specific page only

programmeradmin1浏览0评论

I have plugin I would like to use only on the contact page, however the script and css is being loaded on every page. Aside from the increased http requests, it is also causing another script to not work properly on another page.

Is there a way to stop this plugin from loading anywhere else on the site?

I know how to do this with normal scripts in the header, but I am not sure how to do this with a plugin that automatically injects scripts into the header.

Thanks in advance.

I have plugin I would like to use only on the contact page, however the script and css is being loaded on every page. Aside from the increased http requests, it is also causing another script to not work properly on another page.

Is there a way to stop this plugin from loading anywhere else on the site?

I know how to do this with normal scripts in the header, but I am not sure how to do this with a plugin that automatically injects scripts into the header.

Thanks in advance.

Share Improve this question asked Dec 24, 2012 at 12:39 AdamAdam 6555 gold badges11 silver badges19 bronze badges
Add a comment  | 

3 Answers 3

Reset to default 4

I have figured it out.

There is a good explanation here

You edit the wp.config file with the scripts you wish to not load...

define('WPCF7_LOAD_JS', false);

...and then manually enqueue them on the pages you wish to load the script.

Try using

if(is_page('contact-page-slug')){ 

to add your functions to that page only.

Try this CODE:

if ( ! is_page('THE NAME OF THE PAGE WHERE YOU WANT CF7 TO RUN') ) {
    add_filter( 'wpcf7_load_js', '__return_false' );
    add_filter( 'wpcf7_load_css', '__return_false' );
}

Source: From the official CF7 page.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论