【发布时间】:2014-08-04 11:44:15
【问题描述】:
我尝试将 wordpress 上自定义帖子标题的第一个字符大写
我在这里找到了这个解决方案:
uppercase issue for title in wordpress
这里是代码:
<a href="<?php the_permalink(); ?>"><?php echo ucfirst(get_the_title());?></a>
它适用于 wordpress 上的普通内容(帖子)。
缺点,我不能在服装贴上使用它!
我也试过这个:
<a href="<?php the_permalink(); ?>"><?php ucfirst(the_title());?></a>
但它不起作用:-(
【问题讨论】: