1

Can you please let me know how I can use the wp_title() function to grab each page titles in WordPress. I used the following code to get the title in different page based on titles but it dost' work!

Here is the code I am using

<title>
       <?php 
             if (is_front_page()) {
                          bloginfo('name'); }
             elseif (is_page()) {
                          wp_title(); echo ' - '; bloginfo('name'); }
       ?>
</title>
4

2 に答える 2

1

これを試して :

<?php wp_title('|', true, 'right'); ?>

関数参照リンクは次のとおりです: http://codex.wordpress.org/Plugin_API/Filter_Reference/wp_title

乾杯!

于 2013-10-30T07:57:43.447 に答える
0

あなたが使用することができます

<title>
  <?php
    if ( is_home() ) {
      bloginfo('name');
    } else {
      wp_title('',true,'');
      echo " | ";
      bloginfo('name');
    }
  ?>
</title>
于 2016-09-18T03:08:02.843 に答える