如何将类应用于PHP行?

时间:2014-08-06 21:12:35

标签: php html wordpress themes

标题我有<?php get_header(); ?> 并且想要添加class="sticky",以便在将其解析为HTML时,它将显示为<header class=sticky">

我在哪里/怎么做?我在PHP系列中尝试的各个地方都给出了一条错误消息 **Parse error: syntax error, unexpected '?' in /home2//public_html/wp-content/themes/conf-theme/page.php on line 1**

1 个答案:

答案 0 :(得分:0)

打开header.php文件并将粘性类添加到

<header id="masthead" class="site-header" role="banner">

get_header功能

  

包含当前主题目录中的header.php模板文件。

EDIT jQuery的

<script type="text/javascript">
$(document).ready(function()
{
    $("header").addClass("sticky");
});
</script>