Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. function display_facebook_pixel() {
  3. if( is_page() ) {
  4. // your tracking code for default pages, although you may need to be more specific about which pages.
  5. } elseif( is_shop) ) {
  6. // your tracking code for the main shop page
  7. } elseif( is_cart() ) {
  8. // your tracking code for the cart page
  9. } elseif( is_product() ) {
  10. // your tracking code for a single product page
  11. }
  12. }
  13.  
  14. add_action('wp_head', 'display_facebook_pixel');
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement