我有点难以确定如何在我创建的网站中设置多个标题。和投资组合的列宽。 我想添加一个在网站中显示标题的选项。右上角默认为左。并能够在投资组合中设置列宽。
我想知道如何加载顶部和右侧标头,并且能够在JavaScript文件中进行一些自定义,因为jquery.blog.js中的SidebarWidth是220.
roll
现在我需要他们理解用户选择标题顶部,如果选择了右侧选项,我希望标题位于顶部或右侧。
toString
在上面的代码中,如果elseif和endif行给我错误。 /// 在我的投资组合案例中
<?php
if of_get_option ('header_position','top') :
get_header( 'top' );
elseif of_get_option ('header_position','right') :
get_header( 'right' );
else :
get_header();
endif;
?>
和js部分
<?php
wp_register_script('your-script', $script-url, $dependencies, false, false);
$pass_to_js = array();
if of_get_option ('header_position','top') :
$pass_to_js['sidebarWidth'] = /* a number */;
get_header( 'top' );
elseif of_get_option ('header_position','right') :
$pass_to_js['sidebarWidth'] = 220;
get_header( 'right' );
else :
$pass_to_js['sidebarWidth'] = /* another number */;
get_header();
endif;
wp_localize_script('your-script', 'js-array-name', $pass_to_js);
wp_enqueue_script('your-script');
?>