0

我尝试将 wordpress 上自定义帖子标题的第一个字符大写

我在这里找到了这个解决方案:

wordpress中标题的大写问题

这是代码:

<a href="<?php the_permalink(); ?>"><?php echo ucfirst(get_the_title());?></a>

它适用于 wordpress 上的普通内容(帖子)。

不利的是,我不能在服装贴上使用它!

我也试过这个:

<a href="<?php the_permalink(); ?>"><?php ucfirst(the_title());?></a>

但它不工作:-(

4

2 回答 2

0

您忘记在第二个示例中回显输出。

<a href="<?php the_permalink(); ?>"><?php echo ucfirst(the_title('', '', false));?></a>

更新:

我刚刚在wordpress codex中发现您应该添加一个参数来返回输出。我已经编辑了代码。

于 2014-08-04T11:46:35.697 回答
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();              
                      ?>
于 2014-08-05T14:59:41.450 回答