2011-04-28 43 views

回答

0

在你的循環中,你需要修改指向該帖子的類別。

您的主頁可以在index.php和home.php上設置。我建議創建一個模板頁面,並建立一個新頁面並將該模板鏈接到它。這樣你就可以保留index.php和home.php完整的備用狀態。

如果你想它的動態,你可以在這裏查看類食品:HTTP://codex.wordpress.org/Function_Reference/get_category_link

0

在你的循環運行條件的類別,而不是永久如果is_sticky是真正。

很多主題包含包含所有的條件等的基本前提是loop.php文件:

<?php if (have_posts()) : while (have_posts()) : the_post(); ?> 

<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 
<?php 
$category_id = get_cat_ID($post->ID); 
$category_link = get_category_link($category_id); 

if (is_sticky() { ?> 

<a href="<?php echo $category_link; ?>" title="<?php the_title();"><?php the_title(); ?></a> 

<?php } else { ?> 

<a href="<?php the_permalink(); ?>" title="<?php the_title();"><?php the_title(); ?></a> 

<?php } ?>