Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一些 wordpress 帖子标记为重要,然后我想在每个页面的开头将这些帖子视为链接列表(例如当您将帖子标记为静态时:帖子选项 -> 可见性)。并更改此列表顺序,内容...
所以,我可以开始考虑如何做一个插件,但之前我想知道是否已经有一个插件可以做我想要的。
谁能帮我?
谢谢。
显然,它与主题风格有关,而不是插件。您只需为您的重要帖子添加一些标签,例如“特殊”,然后从您的主题中:
<?php query_posts('tag=special');if(have_posts()) : while(have_posts()) : the_post(); ?> <h3>Important : <?php the_title(); ?></h3> <?php endwhile;endif;wp_reset_query(); ?>
这只是原理,希望对您有所帮助。
/我已经编辑了上面的/