我已经收到了这段代码,我想修改并使用它来更改template.php
文件,我还没有能够适应它的工作,所以希望能得到任何帮助。
<script type="text/javascript">
jQuery(document).ready(function($) {
if ( $(document).width() < 1500 ) {
$(\'.change-link > a\').each( function(){
newlink = \'Enter New URL\';
$(this).attr(\'href\',newlink);
});
}
});
</script>
在一个
template.php
并可以在以下链接之间进行选择:
<?php include( TEMPLATEPATH . \'/includes/projects.php\'); ?>
这个链接取决于浏览器的大小?
<?php include( TEMPLATEPATH . \'/includes/projects.php\'); ?>
或者我的WordPress主题的其他页面是否需要更多代码?