我尝试在wordpress
上大写自定义帖子标题的第一个字符我在这里找到了这个解决方案:
uppercase issue for title in wordpress
这是代码:
<a href="<?php the_permalink(); ?>"><?php echo ucfirst(get_the_title());?></a>
它适用于wordpress上的正常内容(post)。
通过利弊,我不能在服装帖子上使用它!
我也尝试了这个:
<a href="<?php the_permalink(); ?>"><?php ucfirst(the_title());?></a>
但它不起作用: - (
答案 0 :(得分:0)
您忘记在第二个示例中回显输出。
<a href="<?php the_permalink(); ?>"><?php echo ucfirst(the_title('', '', false));?></a>
<强>更新强>
我刚刚在the wordpress codex中发现你应该添加一个参数来返回输出。我编辑了代码。
答案 1 :(得分:0)
这是我使用的代码:
<?php
// The Query
query_posts( array ( 'post_type' => 'question', 'posts_per_page' => 10 ) );
// The Loop
while ( have_posts() ) : the_post(); ?>
<li>
<h2><a href="<?php the_permalink(); ?>"><?php echo ucfirst(the_title('', '', false));?></a></h2>
<p class="questionexcerpt"> <?php the_excerpt(); ?> </p>
</li>
<?php endwhile; // Reset Query
wp_reset_query();
?>