十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
后台有个“小工具”(不确定是这个,你仔细摸一摸,反正就是那个几个肯定有这个功能的),在那里设置导航,可以把你投稿的页面的链接(站外站内都可以),搞到导航去,就行了。
公司主营业务:网站建设、成都做网站、移动网站开发等业务。帮助企业客户真正实现互联网宣传,提高企业的竞争能力。创新互联公司是一支青春激扬、勤奋敬业、活力青春激扬、勤奋敬业、活力澎湃、和谐高效的团队。公司秉承以“开放、自由、严谨、自律”为核心的企业文化,感谢他们对我们的高要求,感谢他们从不同领域给我们带来的挑战,让我们激情的团队有机会用头脑与智慧不断的给客户带来惊喜。创新互联公司推出共和免费做网站回馈大家。
文章就是内容。当然可以。很多博客都是以文章为主而且是wordpress建的站点
亲,你好,很高兴为你回答。
首先你要准备2个文件
1个是在wordpress主题下的search.php文件
1个是检索页面需要放入html代码。
form action="/" method="get"
input name="s" type="text" placeholder="网站检索" id="s" value="? the_search_query(); ?" /
input name="sa" value="检索" type="image" src="?php bloginfo('template_url'); ?/images/search_icon.gif" align="top" class="btn" /
/form
上面这些是放在页面的form表单
========================================================================
下面这些是放在search.php里的代码
?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package Hotlink
* @subpackage Hotlink Theme
*/
// 検索结果用
$search_query = new WP_Query("s=$s showposts=-1");
get_header(); ?
section class="main clearfix"
?php if (have_posts()) : while (have_posts()) : the_post(); ?
div id="post-?php the_ID(); ?" class="search_post"
div class="search_title"
a href="?php the_permalink(); ?" title="?php the_title_attribute(); ?" rel="bookmark"
?php the_title(); ?
span class="search_text"?php the_excerpt(); ?/span
/a/div
?php the_date() ? ?php the_time() ?
/div
?php endwhile; else: ?
p class="search_text"
?php _e('您要搜索的内容不存在'); ?
/p
?php endif; ?
div class="nav-previous"
?php previous_posts_link(__('laquo; Older Entries', 'kubrick')); ?
/div
div class="nav-next"
?php next_posts_link(__('Newer Entries raquo;', 'kubrick')); ?
/div
/section
?php get_footer(); ?
如果可以使用,记得采纳呦。。有问题继续追问我。