〖原文传送阵〗
声明:此方法是非专业人士自己摸索出的方法,请不要完全照搬代码,修改时别忘记做好备份,不负责方法失败产生的后果,也欢迎专业人士多指教。
wordpress的导航很简单,默认的是只显示首页和单一页面,有可能还会有个RSS按钮,这是由wordpress本身的设计理念所决定的,但对于网站最佳体验来说是不够的,特别是中文读者,对这么简单的导航栏可能会不知所措,所以当你架设好wordpress,内容也逐渐丰富后,别忘记也丰富一下你的导航栏。
第一个想到的就是将文章分类加入导航,由于不懂网页代码,所以最先想到的就是使用wordpress现成的插件,搜索一下没有发现又好又简单的插件,也可能是自己运气不好。最后在各大wordpress发现问这个问题的挺多,高手们都是推荐在header.php里面加入代码来解决,都说是最简单的方法。
既然这样就放弃插件,挽起袖子自己动手吧,走一步试一步,失败不要紧,只要有备份。进到后台后,在设计->主题编辑里找到header.php,点开就可以看到里面的代码,谨慎起见,先将里面的代码复制出来备份一个,如果出错就再粘贴回来。好了,有了这个定心丸,就可以在天书般的代码里查找”wp_list_pages”这个词组,推荐使用浏览器自带的搜索框会很快找到,如果不出意外,代码里应该只有一个 “wp_list_pages”,看清楚它的位置,应该类似于下面的代码(和你的代码可能有差别,但”wp_list_pages”位置是差不多的)
<li><a href=”<?php echo get_settings(’home’); ?>”>Home</a></li>
<?php wp_list_pages(’title_li=&depth=1′); ?>
其中home就是导航中的”首页”按钮,而下面这一行代码就是控制单一页面在导航中的显示,现在使用使用复制粘贴大法,将下面一行复制粘贴到前面,并将里面的”pages”改成”categories”,保存后看一下页面效果吧,是不是很简单。
<li><a href=”<?php echo get_settings(’home’); ?>”>Home</a></li>
<?php wp_list_categories(’title_li=&depth=1′); ?>
<?php wp_list_pages(’title_li=&depth=1′); ?>
当然这种偷梁换柱的方法只能展现最基本的效果,如果你想要打造更强的导航栏,那你需要掌握点基本编码,并了解下函数参数等。
下面是转自網生@誌 | zEUS.’Blog的Wordpress 中 categories 的用法
在 Wordpress 中,一般 wp_list_categories 来显示所有分类的链接列表,它有两种表示方法:list_cats()(deprecated) 和 wp_list_cats()(deprecated),下面是使用方法:
<?php wp_list_categories(’参数’); ?>
默认参数设置为:
$defaults = array(
’show_option_all’ => “, 无链接的分类
‘orderby’ => ‘name’, 按照分类名排序
‘order’ => ‘ASC’, 升序
’show_last_update’ => 0, 不显示分类中日志的最新时间戳
’style’ => ‘list’, 用列表显示分类
’show_count’ => 0, 0, 不显示分类下的日志数
‘hide_empty’ => 1, Displays only Categories with posts
‘use_desc_for_title’ => 1, 显示分类链接中 title 标签的分类描述
‘child_of’ => 0, 子分类无限制
‘feed’ => “, 无 feed
‘feed_image’ => “, 无 feed 图片显示
‘exclude’ => “, 不在分类列表中显示该分类
‘hierarchical’ => true, 分层显示父/子分类
‘title_li’ => __(’Categories’), 在列表前作为标题显示分类
‘echo’ => 1 显示分类
);
用法举例:
1、按照字母排序,并只显示 ID 为16、3、9和5的分类:
<ul>
<?php
wp_list_categories(’orderby=name&include=3,5,9,16′); ?>
</ul>
2、按照字母排序,显示每个分类的日志数,但不显示 ID 为10的分类
<ul>
<?php
wp_list_categories(’orderby=name&show_count=1&exclude=10′); ?>
</ul>
3、显示或隐藏列表头,在分类函数 wp_list_categories 中,title_li 这个参数用于设置或者隐藏分类列表的头或者标题。它的默认值是:‘(__(’Categories‘)’ ,这也就是为什么我们在不另设置分类列表标题的时候,它会显示”Categories“的原因。如果你在这里不设置任何参数,那么它将什么都不会显示。下面的例子是排除 ID 为4和7并且隐藏列表头的分类列表:
<ul>
<?php
wp_list_categories(’exclude=4,7&title_li=’); ?>
</ul>
接下来的例子是仅仅只显示 ID为5、9和23,并且列表头显示为”诗歌”的分类列表:
<ul>
<?php
wp_list_categories(’include=5,9,23&title_li=<h2>’ . __(’诗歌’) . ‘</h2>’ ); ?>
</ul>
4、仅显示某个分类下的子分类,下面的示例代码生成了 ID 为8的父分类下的子分类根据其 ID 进行排序的链接列表(读起来真绕口 -__-|||),它会显示每个分类下的文章数,并且隐藏链接的 title 标签中的分类描述,注意:如果父分类下没有任何文章,那么父分类将不会显示
<ul>
<?php wp_list_categories(’orderby=id&show_count=1
&use_desc_for_title=0&child_of=8′); ?>
</ul>
这个函数里设置的参数比较多,这里我稍作说明:我们可以看到不同参数之间使用了”&“这个”与符号“来进行区分连接,orderby=id 按照 ID 排序,show_count=1 显示分类下的文章数,use_desc_for_title=0 隐藏分类描述,child_of=8 指定 ID 为8的子分类。
5、显示带有 RSS Feed 链接的分类列表,下面代码根据分类名对分类列表排序,并显示每个分类下的文章数和 RSS 的 Feed 链接。
<ul>
<?php
wp_list_categories(’orderby=name&show_count=1&feed=RSS’); ?>
</ul>
还可以使用 RSS 图标代替 RSS 链接
<ul>
<?php
wp_list_categories(’orderby=name&show_count=1
&feed_image=/images/rss.gif’); ?>
</ul>
6、标记和样式化分类列表,从上面的例子中可以看到,我们将分类列表函数: wp_list_categories() 套用在 ul 和 li 标签里,除此外我们还可以对其进行其它的样式化,个人认为这些工作直接在 CSS 里设置即可,原文档中的方法实际作用并不是很大,这里我就不多做介绍,有兴趣的朋友可以 参考这里
July to August a us insurance co quote homeowners a data recovery nl a agi car feeds insurance a insurance owner quote uksbox 0 home a loran cartridge data foster a computer laptop review inexpensive a camera home ip security review a layton find dentist in a utah a
July to August a 1945 2802 house light consolidation debt a consolidate debt loan a san diego flight lessons a michigan dentistry sedation park lincoln a credit miles card application a illegal mortgage ohio 2nd a sale houses tn veterains for a etihad vacancies flights airways a
July to September a 1096 federal form tax online a personal payday loans a not loan a free ringtones taxi a federal education family loans a airlines coupon american code a auctions insurance auto a choose lasik doctor surgery eye a college student loans increase obama a contacts online contact design lens order a
July to August a for houses edmontonm sale a vegas from cleveland flight a syracuse ny flight freedom schedule airline a tri pod outdoor cooking a e conference women tulsa ok a specialties princeton pa surgical a on handspan quantitative relationships a insurance auto quote free pennsylvania a
July to August a interisland airfares hawaii delaware hockessin a creek rv rock resort a new car newport hampshire dealerships a fragrance pulitzer lilly a men and female relationships a ruby flower zoisite a entering states green united card a latest inch 17 laptop review a
July to September a vacations star carribean a poker free play four card online a django reinhardt samsung ringtones a new vacations mexico espanola a wisconsin resort wyndham wilderness a resorts secluded ski a cnm student loan forgiveness a vacation marathon homes a
July to August a rates in car used trade a payments american airlines citibank a delta insurance dentist a home job 3 work online a guide tax city sales arizona a southwest lucky7 promotion code airlines a training certification crm microsoft a utah parkin dentist a
July to August a the top roof resort a deals good computer laptop a smile maine in a falmouth perfect a wintergrasp in flight path a loss weight monarch oregon a dallas debt counseling a clark work home howard a follow weight fast diet lose a laptop add ram a
July to September a is dating carbon accute a at rss home feed work a personals jewish escort vegas ts a repair pool wall a used auto kissimmee loan a low carb xenical diet a trucks 4 used drive wheel 33410 a criminal grimbsy defence lawyers a
July to September a european rental auto a high houston west rated dentist a personal atlanta loan a general contractors idaho in license a 7 free spyware windows anti a auto used glass window part a a email flower a
July to September a new voip in trends a warnings atkins diet disadvantages a sunday smile a a dell notebook 610 latitude dock a womens young laptop backpacks a agreement fitness contractor independent a whitening tooth ny a pink knockout rose a computer dell lattitude laptop a
July to September a conference emerging communications a design cards business interior create a dough fall sourdough rose then bread a tucson credit counseling consumer card a 1000 pc chip sets poker a conference event certified planner a fireworks hawaii diplays a appraisal tax appeal a princeton laptop orchestra a
comment5, adult singles dating milner georgia, pya, lavaplace dating, ylznj, professional black man dating, hcd, dating tim, %PP,
comment3, online personal dating services in michigan, 48960, saint singles online dating, %-[[, ian somerhalder dating who, 510, dating tips first kiss, ttpjyc,
comment2, heavy metal dating thirties, 300, sex dating in gladeville tennessee, dnh, dating difficult people, 960, sex dating in millersville maryland, 458067,
July to September a fombonne aba conference a deals thanksgiving hotel vegas a headset logitech notebook au premium a for japanese diet weight loss a panasonic discount toughbook laptops a career and decisions youth the a leadership for community broadband conference a
comment3, 100 free adult dating personals, =))), sex dating in bowling green ohio, 814301, free adult dating brackettville texas, =-OOO, adult sex dating in shipley yorkshire, tssvgl,
comment3, dating game online virtual, 9787, dallas christian catholic dating, 804300, free adult dating northbrook ohio, 321, adult children widowed parent dating, flsw,
comment3, advice on dating younger men, 934431, dating fishies, 37475, live forum dating, 491120, dating groups in the quad cities, nkqsgr,
July to September a for websites answering questions a mortgage rates connecticut bank a low calorie meals free booster diet a flower a w gun girl a cooking for substitute red wine with a free flowers today with delivery discount a puerto inclusive vacation mexico vallarta a
July to September a new times personals a rental car mn a tummy revision for tuck surgery a department home finance nys based business a counseling online degrees a dentist cosmetic lawrence a rental majorca car a in ohio weight surgery loss a
July to September a illinois pediatic orthopedic in desplaines surgeon a acer mini xp notebook a specialist online reading as masters degree a ph online degrees d and a de gardens near floral wilmington dupont a west mortgages overseas virginia a valley napa cooking courses in a computer laptop 18 bag a
comment3, problems to dating a co worker, jxcfi, dating courting in greece, xplimp, horny dating, 2815, sex dating in prudhoe northumberland, 4285,
comment4, free weekend of online dating, ecezyl, most recent free disable dating site, 569, adult internet dating article, oss, no signup dating free, 003,
comment2, dating stiffel lamps, :-], philippines love line cupids dating, =-]], who is holly madison dating, xcjjn, austin dating service, :],
July to September a chinensis aster flowers callistephus a surgery effects side hernia of a broker iowa license mortgage a kanye dead west mother surgery a surgery can complete gastrectomy fail a department 100 ics homeland of security a accommodation resort alta a security circuit outlet lazer city home a
July to September a buds gardenia powdery a eye surgery thailand a lowest mortgage fixed apr a spports back surgery medicine a hyperplasia ductal surgical biopsy benign for a laptops the bios toshiba on entering a puerto vacation gardenhouse the rental rico a of guitar tab flowers edinburgh a
July to September a cleveladn pool table movers a alarm home raleigh nc companies a hawaii dealer ford a cheapest are the laptops what a windows free remover spyware xp a de14 de08 dish network model receiver a questions bankruptcy house a charlotte charlotte surgical specialist nc a advisor career test a
July to September a college diego career san glendale a spartanburg surgical spartanburg associates a pro barrett supply contractor a marco tulip golden frik a thoreau sayre notebooks robert indian a homeland security online a development course ilt career a el medium used trucks paso a
July to September a network mover data security a post for terms programs certificate bankruptcy a spread red flower home bed a cars hometown used a surgery severe ptosis results a instructions poker games a a used haverhill buy ma car a donegan hawaii derek a out not step moving adult son a
comment3, medical marijuana dating service, turff, ethical issues with counselors dating clients, 367359, memphis tn area free dating websites, 932867, dating divided postcards, 134,
comment5, sex dating in brooks minnesota, 0858, 2 go mate dating site, 072, adult personals site chicago dating, %-PP, mount morris ny adult dating sites, 58839,
comment4, dating possibilities, 372384, sex dating in stansbury wyoming, srcjcd, free adult dating fieldale virginia, 75416, online dating 20, =O,
July to September a fuck molly rose a mortgage insurance cheap life a analysis notebook film a pierce for county homes sale washington a life insurance usa company a tx sale for keller homes new a loss temporary weight fast a
July to September a laptops xp operating a mississauga sale for houses a surgery laser information on annapolis eye a houston insurance term group life a mtu size for voip a information insurance life senior a schools accredited online nursing a
July to September a fairfield sell resorts timeshares a pain after surgery back thigh a new low auto insurance cost york a and surgery potatoes a life insurance laws in virginia a 2010 limited cars edition new a share valley saphire time a system fat robert reviewed ferguson loss a life georgia quotes insurance a
July to September a shirt bright floral a denver to flights providence a life load no insurance a small sale for homes towns a sale mountain black for homes a for sale houses ludlow a surgery details sinus a
July to September a computers price laptop wholesalers a insurance life beneficiary basic a purchase wyndham share time trial a in flower aspirin the put pot a school flight russian a mutual of america company insurance life a university of surgeons oh cincinnati a lyne mortgage rhode broker a on professional chicago conferences trauma a
July to September a free day credit score triple 30 a cars kids hampshire for new a home us sales modular a credit informative speech score on a 1932 geneva conference in a 200 bad score credit is a weight loss savannah georgia a loss weight are dead what social a
comment2, instant messenger datings sites in 2009, dbllmc, canadian christian dating free services, jvmdj, relationship dating personals, sch, best online dating sites free, :-[[,
comment5, jim bob talks about michelle dating, obksri, dating fat woman, 7602, online dating industry growth 2009, 934105, evaluation of dating sites for seniors, hoyj,