站长百科 | 数字化技能提升教程 数字化时代生存宝典
首页
数字化百科
电子书
建站程序
开发
服务器
办公软件
开发教程
服务器教程
软件使用教程
运营教程
热门电子书
WordPress教程
宝塔面板教程
CSS教程
Shopify教程
导航
程序频道
推广频道
网赚频道
人物频道
网站程序
网页制作
云计算
服务器
CMS
论坛
网店
虚拟主机
cPanel
网址导航
WIKI使用导航
WIKI首页
最新资讯
网站程序
站长人物
页面分类
使用帮助
编辑测试
创建条目
网站地图
站长百科导航
站长百科
主机侦探
IDCtalk云说
跨境电商导航
WordPress啦
站长专题
网站推广
网站程序
网站赚钱
虚拟主机
cPanel
网址导航专题
云计算
微博营销
虚拟主机管理系统
开放平台
WIKI程序与应用
美国十大主机
编辑“
WordPress:Fun Character Entities
”
人物百科
|
营销百科
|
网赚百科
|
站长工具
|
网站程序
|
域名主机
|
互联网公司
|
分类索引
跳转至:
导航
、
搜索
警告:
您没有登录。如果您做出任意编辑,您的IP地址将会公开可见。如果您
登录
或
创建
一个账户,您的编辑将归属于您的用户名,且将享受其他好处。
反垃圾检查。
不要
加入这个!
=文字实体或者扩展文字= 在许多WordPress站点上,你可以看到单个的符号有时突然出现。通常这些符号出现在导航连接上。举个例子,看这个例子中的书名号'''(«)'''和'''(»)''': <div style="border:1px solid blue; width:50%; margin:20px; padding:20px">[[#WordPress:Character Entities or Extended Characters|« « Previous Post Title]] | [[#WordPress:Character Entities or Extended Characters|Next Post Title » » ]]</div> 这些符号叫做'''[[WordPress:Glossary#HTML|HTML]] 文字实体'''或者叫做'''扩展文字'''.它们是通过一些网页上看起来很奇怪的,浏览器认为是符号的代码生成的。 生成上述例子的代码如下: <pre><?php previous_post('&laquo; &laquo; %', '', 'yes'); ?> | <?php next_post('% &raquo; &raquo; ', '', 'yes'); ?></pre> 一些最流行的[[WordPress:Glossary#HTML|HTML]] ''文字实体''为: <div style="font-size:110%"> :<tt>&raquo;</tt> » double right angle quote<br /> :<tt>&laquo;</tt> « double left angle quote<br /> :<tt>&lt;</tt> < single left arrow<br /> :<tt>&gt;</tt> > single right arrow<br /> :<tt>&bull;</tt> • bullet<br /> :<tt>&#9829;</tt> or <tt>&hearts;</tt> ♥ black heart<br /> :<tt>&#9830;</tt> or <tt>&diams;</tt> ♦ black diamond<br /> :<tt>&#9827;</tt> or <tt>&clubs;</tt> ♣ black clubs (shamrock)<br /> :<tt>&#9824;</tt> or <tt>&spades;</tt> ♠ black spade<br /> :<tt>&#8734;</tt> ∞ infinity symbol<br /> :<tt>&mdash;</tt> — long dash<br /> </div> =在WordPress中使用文字实体= 使用''文字实体''是设计中一个有趣的部分!你可以在[[WordPress:Template Tags|模板标签]]中使用这些特殊符号,如[[WordPress:Template Tags/the_category|<tt>the_category()</tt>]]标签。注意:[[WordPress:Template Tags/the_category|<tt>the_category()</tt>]] [[WordPress:Template Tags|模板标签]]列表,在[[WordPress:Post Meta Data Section|''文章meta数据'']] 部分,多种[[WordPress:Glossary#Category|分类]]指定为[[WordPress:Glossary#Post|文章]]。 在这个例子中,特殊的''文字实体''心形('''♥''')符号把WordPress, 电脑和网络新闻 [[WordPress:Glossary#Category|分类]]分开来: <pre><?php the_category(' &hearts; ') ?></pre> <div style="font-size: 105%; color: blue; font-weight:bold; margin:20px; padding: 20px; border:solid 1px blue">WordPress ♥ Computers ♥ Internet News</div> 这个例子中你可以看到[[WordPress:Template Tags/the_title|文章标题]]中使用的其中一种符号: <pre><?php the_title('&#8734; ', ' &#8734;'); ?> </pre> <div style="font-size: 120%; color: blue; font-weight:bold; margin:20px; padding: 20px; border:solid 1px blue">∞ WordPress Makes Me Smile ∞</div> 如果你想要把[[WordPress:Template Tags/the_author|文章作者]]高亮显示,你不用在WordPress模板标签中使用文字实体,你可以使用以下代码: <pre><div id="author">&diams; <?php the_author(); ?></div></pre> <div style="color: blue; font-weight:bold; margin:20px; padding: 20px; border:solid 1px blue">♦ Harriet Smith</div> 如同你所看到的,在你的站点中有很多''文字实体''的使用。你可以实验,然后找到更多创造性的方法来使用这些符号做好你的设计! ::'''注意:'''不是所有的[[WordPress:Template_Tags|模板标签]]可以使用''文字实体'',尤其是那些使用[[WordPress:Template_Tags/How_to_Pass_Tag_Parameters#Boolean|布尔参数]]的[[WordPress:Template_Tags|标签]]。测试一个[[WordPress:Template_Tags|模板标签]] '''thoroughly''',确认它可以接受这种符号。 ==文字实体资源== * [http://www.ascii.cl/htmlcodes.htm ASCII HTML 代码] * [http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/charsets/charsets.asp Microsoft Developer’s HTML 字符集] * [http://www.digital-web.com/articles/extended_ascii_characters_for_html/ 数字网页杂志’s HTML扩展 ASCII 文字] * [http://www.utexas.edu/learn/html/spchar.html 德州大学 – 特殊和扩展文字] * [http://www.fjordaan.uklinux.net/moveabletype/fblog/archives/000063.html 扩展文字的浏览器支持] * [http://www.chami.com/tips/internet/050798I.html Chami’s 小提示: HTML特殊文字参考] * [http://unicode.org/ Unicode 联盟站点]
摘要:
请注意,您对站长百科的所有贡献都可能被其他贡献者编辑,修改或删除。如果您不希望您的文字被任意修改和再散布,请不要提交。
您同时也要向我们保证您所提交的内容是您自己所作,或得自一个不受版权保护或相似自由的来源(参阅
Wordpress-mediawiki:版权
的细节)。
未经许可,请勿提交受版权保护的作品!
取消
编辑帮助
(在新窗口中打开)