body onLoad on a specific WordPress page

前端 未结 3 1615
一生所求
一生所求 2021-01-25 07:53

Using the latest Wordpress version (3.6), I am trying to apply:


To a specific landing page on my

3条回答
  •  滥情空心
    2021-01-25 08:35

    You can use many of the conditional tags available in WordPress to get the desired functionality.

    http://codex.wordpress.org/Conditional_Tags

    Example:

     if ( is_page( 'about' ) ) { 
    // do something
     } 
    

    I agree with brasofilo, you don't necessarily have it include the conditional tag in your template. It can used anywhere, depending on your project.

提交回复
热议问题