如何将脚本放入functions.php并调用

时间:2016-07-15 10:45:44

标签: php html

我的页脚底部有一个硬编码的大脚本。

html(footer.php)

 // No side effect: just answer is running or not
 public bool IsRunning {
   get {
     return (move != Moving.None) && staminaRegan && KeyState.IsKeyDown(Keys.Space);
   }
 }

 // Put the right interval based on instance internal state 
 // (if it's running etc.)
 public void AdjustInterval() {
   if (IsRunning) // and may be other conditions
     EntityAnimation.interval = 10; //TODO: move magic number into constant 
   else 
     EntityAnimation.interval = 65; //TODO: move magic number into constant
 } 

我想将它放在我的functions.php文件中,如果可能的话,只需在此处调用它/它是否有效。

1 个答案:

答案 0 :(得分:0)

请为它制作一个单独的js文件并将其包含在该html页面中。 通过这种方式,您的代码可以很好地维护,并且可以通过浏览器进行缓存,从而显着提高性能。