我正在研究champer主题,我根据文档的指导添加了公文包,但当我单击图像时,它会转到另一个页面,但我想停留在类似的页面上,不改变。我怎样才能做到这一点。我想我的投资组合形象的行为,如搜索引擎优化在此链接。http://www.gallyapp.com/tf_themes/?theme=Chamber
我的投资组合。php代码为
<?php
session_start();
if(!isset($hide_header) OR !$hide_header)
{
get_header();
}
if(isset($_SESSION[\'pp_portfolio_style\']))
{
$pp_portfolio_style = $_SESSION[\'pp_portfolio_style\'];
}
else
{
$pp_portfolio_style = get_option(\'pp_portfolio_style\');
}
if(empty($pp_portfolio_style))
{
$pp_portfolio_style = \'2\';
}
include (TEMPLATEPATH . "/templates/template-portfolio- ".$pp_portfolio_style.".php");
?>