Placing Google Analytics code in Wordpress specific page

我与影子孤独终老i 提交于 2019-12-02 18:09:31

问题


I'm trying to get Google Analytics Code to work on the thank-you page after customer has filled in the contact form and I've tried putting it in the thank-you page which is in the pages under admin in Wordpress backend using HTML tab but it seems to generate unnecessary p and br tags in between codes especially before closing tag. I'm not sure whether that is causing the issue or not. Is there a way we can do this for just one page?


回答1:


I'm not 100 % sure whether it's possible at all to insert javascript with the tinyMCE Editor of Wordpress.

If that's true, then you can try the following:

  1. Get the posts' ID: Look at the linking in your admin menu when you are in the view where you can see all your posts, e.g.

    http://www.your-url.com/wp-admin/post.php?post=796&action=edit

    796 would be your ID here.

  2. Enter the following in your header.php of your wordpress theme (to find at /wp-content/themes/theme-name):

.

  <?php if (is_page(796)) { ?>   
   //YOUR ANALYTICS CODE IN HERE
  <?php } ?>

Replace 796 with your ID here, and put your analytics code in between the PHP code.




回答2:


It sounds like you're trying to add it using the "Visual" view, which formats whatever you put in into paragraphs, etc.

Try switching to "HTML" view (the tab is at the top right of the input box) and add it there - hopefully that should allow you to add it without converting it!

Edit: As per my comments below, I made a mistake - it seems even the HTML tab adds some degree of formatting.

In this case, you may find some use with this plugin:

http://wordpress.org/extend/plugins/raw-html/

This allows you to displable to auto formatting on a per-post basis. So on that specific page you could turn off the autoformatting simply to allow you to add that Analytics snippet.

The only other way I can think off offhand would be to write a custom page_template just for that thankyou page and add it to there. Instructions are here: http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates



来源:https://stackoverflow.com/questions/7567391/placing-google-analytics-code-in-wordpress-specific-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!