所以我完全爱上了Orman Clarke的'Classica'wordpress主题,但是无法链接到预先过滤的内容总是一个问题。不幸的是,我在1.1.4版本中下载了(并且发现了一些解决方案),但是自从我升级到1.2后,我还没有按照预期的方式使用流沙功能。 “全部”工作,但实际过滤器都没有 - 内容只是消失了。
1.1.4使用quicksand / jq过滤工作与固定链接解决方法一起工作。
我将代码从旧模板直接复制到新模板,但这并不能解决问题。我尝试并排运行两个版本并对源代码进行比较,但我看不出有什么区别。我甚至系统地将文件从旧到新逐个复制,以查看解决问题的方法。
有点腌菜,真的 - 所以如果有人能指出我的代码中的问题在哪里,那将非常感激。
http://www.colorspace.am/portfolio
除了:
我的永久链接过滤解决方案的代码如下。它要求我为每个过滤器构建一个页面,但现在它已经足够好了。
<h1 class="page-title">
<?php
global $post;
if(get_post_meta($post->ID, 'heading_value', true) != ''):
echo get_post_meta($post->ID, 'heading_value', true);
else:
_e('Some of my recent work.', 'framework');
endif;
?>
</h1>
<!--BEGIN #recent-portfolio .home-recent -->
<div id="recent-portfolio" class="home-recent portfolio-recent clearfix">
<?php while (have_posts()) : the_post(); ?>
<!--BEGIN .sidebar -->
<div class="sidebar">
<?php
$Path=$_SERVER['REQUEST_URI'];
if ($Path=="/portfolio")
{
echo "<h3>Filter:</h3>";
echo "<ul id=\"filter\">";
echo "<li class=\"segment-1\"><a data-value=\"all\" href=\"#\">All</a></li>";
wp_list_categories(array('title_li' => '', 'taxonomy' => 'skill-type', 'walker' => new Portfolio_Walker()));
echo "</ul>";
}
else {
echo "<a href=\"/portfolio\">← return</a>";
}
?>
<!--END .sidebar -->
</div>
<?php endwhile; ?>
<!--BEGIN .recent-wrap -->
<div class="recent-wrap">
<ul id="items" class="image-grid">
<?php
$count = 1;
$query = new WP_Query();
$query_string = 'post_type=portfolio&posts_per_page=-1&orderby=title&order=asc';
if($post->post_name != 'portfolio') $query_string .= '&skill-type=' . $post->post_name;
$query->query($query_string);
while ($query->have_posts()) : $query->the_post();
$terms = get_the_terms( get_the_ID(), 'skill-type' );
?>
<li data-id="id-<?php echo $count; ?>" class="<?php foreach ($terms as $term) { echo strtolower(preg_replace('/\s+/', '-', $term->name)). ' '; } ?>">
<!--BEGIN .hentry -->
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<div class="post-thumb">
<?php tz_lightbox(get_the_ID()); ?>
</div>
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'framework'), get_the_title()); ?>"> <?php the_title(); ?></a></h2>
<!--BEGIN .entry-content -->
<div class="entry-content">
<?php the_excerpt(); ?>
<!--END .entry-content -->
</div>
<!--END .hentry-->
</div>
<?php
$count++;
?>
</li>
<?php endwhile; wp_reset_query(); ?>
</ul>
<!--END .recent-wrap -->
</div>
<!--END #recent-portfolio .home-recent -->
</div>
答案 0 :(得分:1)
用于过滤的functions.php中的代码必须与之前的版本交换(我认为我使用了1.2来修复) - 没有其他文件需要修改。
如果我已经知道了functions.php被更改了,我可能会先找到那里。