2013-12-12 45 views
1

嗨,大家好我張貼的問題提早了我的博客文章如何保持替換WordPress的 https://stackoverflow.com/questions/20541544/why-do-my-recent-post-titles-replace-the-page-title-i-am-posting-on/20542610?noredirect=1#20542610 我的網頁標題,但我不明白我的問題得到了答覆的方式,因爲我沒有PHP經驗所以我認爲id在這裏發佈我的代碼,所以如果任何人可以針點在wordpress代碼它有一個錯誤? 這是在其標題爲「最新消息」將被替換爲什麼我的文章標題代替我的網頁標題

<?php 
/** 
* The template for displaying all pages. 
* 
* This is the template that displays all pages by default. 
* Please note that this is the wordpress construct of pages 
* and that other 'pages' on your wordpress site will use a 
* different template. 
* 
*/ 
?> 
<?php get_header(); ?> 
<div class="page-heading"> 
    <h1 class="page-title"><?php the_title(); ?></h1> 
    <div class="clear"></div> 
</div> 
<!--Start Page Content --> 
<div class="page-content-container"> 
    <div class="page-content"> 
     <div class="grid_16 alpha"> 
      <div class="content-bar">   
       <?php if (have_posts()) : the_post(); ?> 
        <?php the_content(); ?> 
        <div class="clear"></div> 
        <?php wp_link_pages(array('before' => '<div class="page-link"><span>' . __('Pages:', 'black-bird') . '</span>', 'after' => '</div>')); ?> 
       <?php endif; ?> 

       <!--Start Comment box--> 
       <?php comments_template(); ?> 
       <!--End Comment box--> 

      </div> 
     </div> 
     <div class="grid_8 omega"> 
      <!--Start Sidebar--> 
      <?php get_sidebar(); ?> 
      <!--End Sidebar--> 
     </div> 
    </div> 
</div> 
</div> 
</div> 
</div> 
<?php get_footer(); ?> 

頁面的代碼,這是對職位代碼的每一個新的帖子標題替換頁面標題

<?php 
/** 
* The Template for displaying all single posts. 
* 
*/ 
?> 
<?php get_header(); ?> 

<!--Start Page Heading--> 
<!--Start Page Content --> 
<div class="page-content-container"> 
    <div class="page-content single"> 
     <div class="grid_16 alpha"> 
      <div class="content-bar"> 
       <!-- Start the Loop. --> 
       <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 
         <!--post start--> 
         <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 

             <div class="post_content"> 
              <?php the_content(); ?> 
              <div class="clear"></div> 
    <h1 class="post_title single" ><span><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(esc_attr__('Permalink to %s', 'black-bird'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a><span></h1> 
              <?php wp_link_pages(array('before' => '<div class="page-link"><span>' . __('Pages:', 'black-bird') . '</span>', 'after' => '</div>')); ?> 
              <?php if (has_tag()) { ?> 
               <div class="tag"> 
                <?php the_tags(__('Post Tagged with ', ', ', '')); ?> 
               </div> 
              <?php } ?> 
             </div>        
             <ul class="post_meta clearfix"> 
              <li class="posted_by"><span><?php _e('Posted by', 'black-bird'); ?></span>&nbsp;&nbsp;<img src="<?php echo get_template_directory_uri(); ?>/images/admin.png" /><?php the_author_posts_link(); ?></li> 
              <li class="post_category"><span><?php _e('Posted in', 'black-bird'); ?></span>&nbsp;&nbsp;<?php the_category(', '); ?></li> 
              <li class="post_date"><img src="<?php echo get_template_directory_uri(); ?>/images/date.png" />&nbsp;&nbsp; <?php echo get_the_time('M, d, Y') ?></li> 
              <li class="post_comment"><img src="<?php echo get_template_directory_uri(); ?>/images/comment.png" />&nbsp;&nbsp;<span><?php comments_popup_link('No Comments.', '1 Comment.', '% Comments.'); ?></span></li> 
             </ul> 
             </div> 
             <!--End Post--> 
             <?php 
            endwhile; 
           else: 
            ?> 
            <div class="post"> 
             <p> 
              <?php _e('Sorry, no posts matched your criteria.', 'black-bird'); ?> 
             </p> 
            </div> 
           <?php endif; ?> 
           <!--End Loop--> 
           <nav id="nav-single"> <span class="nav-previous"> 
             <?php previous_post_link('%link', __('<span class="meta-nav">&larr;</span> Previous Post ', 'black-bird')); ?> 
            </span> <span class="nav-next"> 
             <?php next_post_link('%link', __('Next Post <span class="meta-nav">&rarr;</span>', 'black-bird')); ?> 
            </span> </nav> 
           <!--Start Comment box--> 
           <?php comments_template(); ?> 
           <!--End Comment box--> 
           </div> 
           </div> 
           <div class="grid_8 omega"> 
            <!--Start sidebar--> 
            <?php get_sidebar(); ?> 
            <!--End sidebar--> 
           </div> 
           </div> 
           </div> 
           </div> 
           </div> 
           </div> 
           <?php get_footer(); ?> 

也這是頭文件的代碼

<?php 
/** 
* The Header for our theme. 
* 
* Displays all of the <head> section and everything up till <div id="main"> 
* 
*/ 
?> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html <?php language_attributes(); ?>> 
    <head> 
     <meta charset="<?php bloginfo('charset'); ?>" /> 
     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> 
    <title><?php wp_title(''); ?></title> 
     <link rel="profile" href="http://gmpg.org/xfn/11" /> 
     <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 
     <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" /> 
     <?php wp_head(); ?> 
    </head>    
    <body <?php body_class(); ?> style="<?php if (blackbird_get_option('blackbird_bodybg') != '') { ?>background: fixed url(<?php echo blackbird_get_option('blackbird_bodybg'); ?>);<?php } else { 
      ?> background: fixed url(<?php echo get_template_directory_uri(); ?>/images/bg.jpg); <?php } ?>" > 
     <div class="main-container"> 
      <div class="container_24"> 
       <div class="grid_24"> 
        <div class="header"> 
         <div class="grid_16 alpha"> 
          <div class="logo"> <a href="<?php echo home_url(); ?>"><img src="<?php if (blackbird_get_option('blackbird_logo') != '') { ?><?php echo blackbird_get_option('blackbird_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a></div> 
         </div> 
         <div class="grid_8 omega"> 
          <div class="header-info"> 
           <?php if (blackbird_get_option('blackbird_topright_cell') != '') { ?> 
            <p class="cell"><img src="<?php echo get_template_directory_uri(); ?>/images/call-us.png" class="call-us" />&nbsp; <?php echo stripslashes(blackbird_get_option('blackbird_topright_cell')); ?></p> 
           <?php } else { ?> 
            <p class="cell"><img src="<?php echo get_template_directory_uri(); ?>/images/call-us.png" class="call-us" />&nbsp;Call Us (111) 234 - 5678</p> 
           <?php } ?> 
           <?php if (blackbird_get_option('blackbird_topright_text') != '') { ?> 
            <p><?php echo stripslashes(blackbird_get_option('blackbird_topright_text')); ?></p> 
           <?php } else { ?> 
            <p><?php _e('21/B, London Campus, British Road, Birmingham, UK','black-bird'); ?></p> 
           <?php } ?> 
          </div> 
         </div> 
        </div> 
        <div class="clear"></div> 
        <!--start Menu wrapper--> 
        <div class="menu_wrapper"> 
         <div class="grid_18 alpha"> 
          <div id="MainNav"> 
           <a href="#" class="mobile_nav closed"><?php _e('Pages Navigation Menu','black-bird'); ?><span></span></a> 
           <?php blackbird_nav(); ?> 
          </div></div> 
         <div class="grid_6 omega"> 
          <div class="top-search"> 

           <?php get_search_form(); ?> 
          </div> 
         </div> 
        </div> 
        <!--End Menu wrapper--> 
        <div class="clear"></div> 

這樣的傢伙我需要做什麼改變,並分別以每個帖子標題停止更換頁面的標題?

+0

,你的意思是'或者實際的''(這大概是在'get_header()'中設置的? – <span class="text-secondary"> <small> <span></span> </small> </span> </p> </div> </div> </div> <div itemprop="comment" class="post-comment"> <div class="row"> <div class="col-lg-1"><span class="text-secondary">+0</span></div> <div class="col-lg-11"> <p class="commenttext">在wordpress中添加txt時,給出了兩個空白框,一個標題出現的小框,然後內容越大越好,所以我很關心這個標題,或者是那個較小的博客x爲內容的標題框 – <span class="text-secondary"> <small> <a rel="noopener" target="_blank" href="https://stackoverflow.com/users/2608169/">user2608169</a></span> <span></span> </small> </span> </p> </div> </div> </div> </div> </div> </article> </div> <div class="answer-title"> <span class="text-logo margin-top-sm">A</span> <h2 class="title h4">回答</h2> </div> <div class="item-description text-md markdown-body margin-bottom-40 voidso"> <article class="board-top-1 padding-top-10"> <div class="post-col vote-info"> <span class="count">0<i class="fa fa-thumbs-up"></i></span> </div> <div class="post-offset"> <div class="answer fmt"> <p>這段代碼:</p> <pre><code class="prettyprint-override"><h1 class="post_title single" </code></pre> <p>將打印任何文章標題是。你可以嘗試用</p> <pre><code class="prettyprint-override"><h1><?php wp_title(''); ?></h1> </code></pre> <p>替換它要獲得頁面的標題,或與</p> <pre><code class="prettyprint-override">$parent_title = get_the_title($post->post_parent); echo '<h1>' . $parent_title . '</h1>'; </code></pre> <p>當你說「標題」獲取父頁面標題</p> </div> <div class="post-info"> <div class="post-meta row"> <p class="text-secondary col-lg-6"> <span class="source"> <a rel="noopener" target="_blank" href="https://stackoverflow.com/q/20544912">來源</a> </span> </p> <p class="text-secondary col-lg-6"> <span class="float-right date"> <span>2013-12-12 13:30:35</span> </p> <p class="col-12"></p> <p class="col-12"></p></div> </div> <!-- comments --> <div class="comments"> <div itemprop="comment" class="post-comment"> <div class="row"> <div class="col-lg-1"><span class="text-secondary">+0</span></div> <div class="col-lg-11"> <p class="commenttext">沒有任何工作的標題保持與帖子 – <span class="text-secondary"> <small> <a rel="noopener" target="_blank" href="https://stackoverflow.com/users/2608169/">user2608169</a></span> <span></span> </small> </span> </p> </div> </div> </div> <div itemprop="comment" class="post-comment"> <div class="row"> <div class="col-lg-1"><span class="text-secondary">+0</span></div> <div class="col-lg-11"> <p class="commenttext">一樣您是否嘗試將其添加到您的header.php而不是您的頁面?這應該是你的頁面標題設置 – <span class="text-secondary"> <small> <span></span> </small> </span> </p> </div> </div> </div> <div itemprop="comment" class="post-comment"> <div class="row"> <div class="col-lg-1"><span class="text-secondary">+0</span></div> <div class="col-lg-11"> <p class="commenttext">好吧,因爲我是新的PHP想象力我會粘貼我的頭代碼上面,所以如果你可能在代碼中看到爲什麼每個新的職位是替換頁眉或標題我會appeciate它如果你可以像上面所做的那樣指出我在哪裏添加什麼東西 – <span class="text-secondary"> <small> <a rel="noopener" target="_blank" href="https://stackoverflow.com/users/2608169/">user2608169</a></span> <span></span> </small> </span> </p> </div> </div> </div> </div> </div> </article> <div> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-6208739752673518" data-ad-slot="1038284119" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> <div class="clearfix"> </div> <div class="relative-box"> <div class="relative">相關問題</div> <ul class="relative_list"> <li> 1. <a href="http://hk.uwenku.com/question/p-fgwxzuuy-bbr.html" target="_blank" title="爲什麼我的章節標題出現在UISearchBar的一側?"> 爲什麼我的章節標題出現在UISearchBar的一側? </a> </li> <li> 2. <a href="http://hk.uwenku.com/question/p-mrbtwbey-ss.html" target="_blank" title="爲什麼我的網頁標題與預期不同?"> 爲什麼我的網頁標題與預期不同? </a> </li> <li> 3. <a href="http://hk.uwenku.com/question/p-padtjuap-ek.html" target="_blank" title="爲什麼標題上的asp:ContentPlaceHolder替換整個標題?"> 爲什麼標題上的asp:ContentPlaceHolder替換整個標題? </a> </li> <li> 4. <a href="http://hk.uwenku.com/question/p-tsjdancx-mo.html" target="_blank" title="爲什麼你看到我的網站的標題在鉻?"> 爲什麼你看到我的網站的標題在鉻? </a> </li> <li> 5. <a href="http://hk.uwenku.com/question/p-wcviaydq-bkc.html" target="_blank" title="顯示文章的頁面標題"> 顯示文章的頁面標題 </a> </li> <li> 6. <a href="http://hk.uwenku.com/question/p-umwnspot-bdk.html" target="_blank" title="Joomla 2.5 /使用文章標題作爲「瀏覽器頁面標題」,但不顯示文章標題"> Joomla 2.5 /使用文章標題作爲「瀏覽器頁面標題」,但不顯示文章標題 </a> </li> <li> 7. <a href="http://hk.uwenku.com/question/p-yqelkyem-bhy.html" target="_blank" title="爲什麼我的頁面標題中沒有空格?"> 爲什麼我的頁面標題中沒有空格? </a> </li> <li> 8. <a href="http://hk.uwenku.com/question/p-hhlbliza-hd.html" target="_blank" title="將標題文字移動到標題時爲什麼我的標題文字消失?"> 將標題文字移動到標題時爲什麼我的標題文字消失? </a> </li> <li> 9. <a href="http://hk.uwenku.com/question/p-outofmdq-vx.html" target="_blank" title="標題已經發送...爲什麼我的代碼不工作?"> 標題已經發送...爲什麼我的代碼不工作? </a> </li> <li> 10. <a href="http://hk.uwenku.com/question/p-pmtbzyfu-bng.html" target="_blank" title="我的網站上的標題問題"> 我的網站上的標題問題 </a> </li> <div> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:block; text-align:center;" data-ad-layout="in-article" data-ad-format="fluid" data-ad-client="ca-pub-6208739752673518" data-ad-slot="4606349252"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <li> 11. <a href="http://hk.uwenku.com/question/p-oyxhazow-bcc.html" target="_blank" title="如果網頁不存在,我應該返回什麼標題?"> 如果網頁不存在,我應該返回什麼標題? </a> </li> <li> 12. <a href="http://hk.uwenku.com/question/p-fyxzofjt-bkb.html" target="_blank" title="從文章的標題"> 從文章的標題 </a> </li> <li> 13. <a href="http://hk.uwenku.com/question/p-cdkleplv-eg.html" target="_blank" title="爲什麼我的圖片將我的文字推到我的標題下方?"> 爲什麼我的圖片將我的文字推到我的標題下方? </a> </li> <li> 14. <a href="http://hk.uwenku.com/question/p-xtingfvc-hn.html" target="_blank" title="爲什麼我無法更改我的操作欄的標題?"> 爲什麼我無法更改我的操作欄的標題? </a> </li> <li> 15. <a href="http://hk.uwenku.com/question/p-zemtbtwa-hr.html" target="_blank" title="爲什麼我的標題留在我的內容下?"> 爲什麼我的標題留在我的內容下? </a> </li> <li> 16. <a href="http://hk.uwenku.com/question/p-vjallczf-qv.html" target="_blank" title="爲什麼我的標題會干擾我的超鏈接?"> 爲什麼我的標題會干擾我的超鏈接? </a> </li> <li> 17. <a href="http://hk.uwenku.com/question/p-krzjgmre-bcr.html" target="_blank" title="什麼導致我的標題移動?"> 什麼導致我的標題移動? </a> </li> <li> 18. <a href="http://hk.uwenku.com/question/p-pzkknfym-rp.html" target="_blank" title="爲什麼offsetParent忽略我的文章標籤?"> 爲什麼offsetParent忽略我的文章標籤? </a> </li> <li> 19. <a href="http://hk.uwenku.com/question/p-gxxmvyzn-go.html" target="_blank" title="爲什麼我的標題和文本不顯示?"> 爲什麼我的標題和文本不顯示? </a> </li> <li> 20. <a href="http://hk.uwenku.com/question/p-ffmvjbhi-bhk.html" target="_blank" title="爲什麼我的標題文字被截斷?"> 爲什麼我的標題文字被截斷? </a> </li> <li> 21. <a href="http://hk.uwenku.com/question/p-nfkzmgeq-bhq.html" target="_blank" title="HTML5:粘性頁腳,標題和文章"> HTML5:粘性頁腳,標題和文章 </a> </li> <li> 22. <a href="http://hk.uwenku.com/question/p-rqjmgbyj-bae.html" target="_blank" title="爲什麼我不能從這個網站上刮掉標題?"> 爲什麼我不能從這個網站上刮掉標題? </a> </li> <li> 23. <a href="http://hk.uwenku.com/question/p-tigpdxox-du.html" target="_blank" title="PHP:標題替代?"> PHP:標題替代? </a> </li> <li> 24. <a href="http://hk.uwenku.com/question/p-gnhuxlau-gn.html" target="_blank" title="Woocommerce - 我的賬戶頁面的替代h1標題爲未​​登錄用戶"> Woocommerce - 我的賬戶頁面的替代h1標題爲未​​登錄用戶 </a> </li> <li> 25. <a href="http://hk.uwenku.com/question/p-rmhqvaqw-bbb.html" target="_blank" title="「Referer」的替代標題"> 「Referer」的替代標題 </a> </li> <li> 26. <a href="http://hk.uwenku.com/question/p-utqowajd-boe.html" target="_blank" title="爲什麼我的標題標籤中的文本在頁面上顯示爲純文本?"> 爲什麼我的標題標籤中的文本在頁面上顯示爲純文本? </a> </li> <li> 27. <a href="http://hk.uwenku.com/question/p-kchcbapj-bns.html" target="_blank" title="爲什麼Facebook分享按鈕在og:標題圖上顯示文章網址而不是實際標題?"> 爲什麼Facebook分享按鈕在og:標題圖上顯示文章網址而不是實際標題? </a> </li> <li> 28. <a href="http://hk.uwenku.com/question/p-ourexjfo-bco.html" target="_blank" title="我的代碼有什麼問題?爲什麼我有錯誤?"> 我的代碼有什麼問題?爲什麼我有錯誤? </a> </li> <li> 29. <a href="http://hk.uwenku.com/question/p-ztudghxc-bnr.html" target="_blank" title="我的網站沒有網站標題"> 我的網站沒有網站標題 </a> </li> <li> 30. <a href="http://hk.uwenku.com/question/p-uzaujmrp-zg.html" target="_blank" title="我想在我的網站的標題區域的問題/ start_ask頁面"> 我想在我的網站的標題區域的問題/ start_ask頁面 </a> </li> </ul> </div> <div> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-6208739752673518" data-ad-slot="1575177025"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="padding-top-10"></div> </div> </div> <script type="text/javascript" src="http://img.uwenku.com/uwenku/script/side.js?t=1644592048261"></script> <script type="text/javascript" src="http://img.uwenku.com/uwenku/plugin/highlight/highlight.pack.js"></script> <link href="http://img.uwenku.com/uwenku/plugin/highlight/styles/docco.css" media="screen" rel="stylesheet" type="text/css" /> <script type="text/javascript"> $('pre').each(function(i, e) { hljs.highlightBlock(e, "<span class='indent'> </span>", false) }); </script> <div class="col-lg-3 col-md-4 col-sm-5"> <div id="rightTop"> <div class="row"> <script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-6208739752673518" data-ad-slot="5415218910" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> <div class="row sidebar panel panel-default"> <div class="panel-heading font-bold"> 最新問題 </div> <div class="m-b-sm m-t-sm clearfix"> <ul class="side_article_list"> <li class="side_article_list_item"> 1. <a href="http://hk.uwenku.com/question/p-yxiqoflb-bu.html" target="_blank" title="FIFO與/ dev/urandom"> FIFO與/ dev/urandom </a> </li> <li class="side_article_list_item"> 2. <a href="http://hk.uwenku.com/question/p-whezobpa-cp.html" target="_blank" title="將劇情保存爲EMF文件"> 將劇情保存爲EMF文件 </a> </li> <li class="side_article_list_item"> 3. <a href="http://hk.uwenku.com/question/p-nffmqfzm-hb.html" target="_blank" title="如何從SNMP MIB獲取ifOperStatus?"> 如何從SNMP MIB獲取ifOperStatus? </a> </li> <li class="side_article_list_item"> 4. <a href="http://hk.uwenku.com/question/p-vrrebkhm-kr.html" target="_blank" title="在同一個表列中選擇重複的記錄並將它們列出"> 在同一個表列中選擇重複的記錄並將它們列出 </a> </li> <li class="side_article_list_item"> 5. <a href="http://hk.uwenku.com/question/p-xzagrdwt-hw.html" target="_blank" title="如何傳遞一個變量在web API"> 如何傳遞一個變量在web API </a> </li> <li class="side_article_list_item"> 6. <a href="http://hk.uwenku.com/question/p-keloufdr-eb.html" target="_blank" title="LendingClub.com API內部服務器在二級市場上購買票據的錯誤"> LendingClub.com API內部服務器在二級市場上購買票據的錯誤 </a> </li> <li class="side_article_list_item"> 7. <a href="http://hk.uwenku.com/question/p-golxqduv-gs.html" target="_blank" title="TCP/IP數據包中的端口號"> TCP/IP數據包中的端口號 </a> </li> <li class="side_article_list_item"> 8. <a href="http://hk.uwenku.com/question/p-fwrwoodx-ex.html" target="_blank" title="模擬Angular 2中的長響應"> 模擬Angular 2中的長響應 </a> </li> <li class="side_article_list_item"> 9. <a href="http://hk.uwenku.com/question/p-bcntqxlt-z.html" target="_blank" title="如何在QSplitter中設置QTreeView的初始大小?"> 如何在QSplitter中設置QTreeView的初始大小? </a> </li> <li class="side_article_list_item"> 10. <a href="http://hk.uwenku.com/question/p-wjcpqafr-d.html" target="_blank" title="打印響應部分完成Python的異步事件循環,同時還完成任務的響應"> 打印響應部分完成Python的異步事件循環,同時還完成任務的響應 </a> </li> </ul> </div> </div> </div> <p class="article-nav-bar"></p> <div class="row sidebar article-nav"> <div class="row box_white visible-sm visible-md visible-lg margin-zero"> <div class="top"> <h3 class="title"><i class="glyphicon glyphicon-th-list"></i> 相關問題</h3> </div> <div class="article-relative-content"> <ul class="side_article_list"> <li class="side_article_list_item"> 1. <a href="http://hk.uwenku.com/question/p-fgwxzuuy-bbr.html" target="_blank" title="爲什麼我的章節標題出現在UISearchBar的一側?"> 爲什麼我的章節標題出現在UISearchBar的一側? </a> </li> <li class="side_article_list_item"> 2. <a href="http://hk.uwenku.com/question/p-mrbtwbey-ss.html" target="_blank" title="爲什麼我的網頁標題與預期不同?"> 爲什麼我的網頁標題與預期不同? </a> </li> <li class="side_article_list_item"> 3. <a href="http://hk.uwenku.com/question/p-padtjuap-ek.html" target="_blank" title="爲什麼標題上的asp:ContentPlaceHolder替換整個標題?"> 爲什麼標題上的asp:ContentPlaceHolder替換整個標題? </a> </li> <li class="side_article_list_item"> 4. <a href="http://hk.uwenku.com/question/p-tsjdancx-mo.html" target="_blank" title="爲什麼你看到我的網站的標題在鉻?"> 爲什麼你看到我的網站的標題在鉻? </a> </li> <li class="side_article_list_item"> 5. <a href="http://hk.uwenku.com/question/p-wcviaydq-bkc.html" target="_blank" title="顯示文章的頁面標題"> 顯示文章的頁面標題 </a> </li> <li class="side_article_list_item"> 6. <a href="http://hk.uwenku.com/question/p-umwnspot-bdk.html" target="_blank" title="Joomla 2.5 /使用文章標題作爲「瀏覽器頁面標題」,但不顯示文章標題"> Joomla 2.5 /使用文章標題作爲「瀏覽器頁面標題」,但不顯示文章標題 </a> </li> <li class="side_article_list_item"> 7. <a href="http://hk.uwenku.com/question/p-yqelkyem-bhy.html" target="_blank" title="爲什麼我的頁面標題中沒有空格?"> 爲什麼我的頁面標題中沒有空格? </a> </li> <li class="side_article_list_item"> 8. <a href="http://hk.uwenku.com/question/p-hhlbliza-hd.html" target="_blank" title="將標題文字移動到標題時爲什麼我的標題文字消失?"> 將標題文字移動到標題時爲什麼我的標題文字消失? </a> </li> <li class="side_article_list_item"> 9. <a href="http://hk.uwenku.com/question/p-outofmdq-vx.html" target="_blank" title="標題已經發送...爲什麼我的代碼不工作?"> 標題已經發送...爲什麼我的代碼不工作? </a> </li> <li class="side_article_list_item"> 10. <a href="http://hk.uwenku.com/question/p-pmtbzyfu-bng.html" target="_blank" title="我的網站上的標題問題"> 我的網站上的標題問題 </a> </li> </ul> </div> </div> </div> </div> </div> </div> </div><!-- wrap end--> <!-- footer --> <footer id="footer"> <div class="bg-simple lt"> <div class="container"> <div class="row padder-v m-t"> <div class="col-xs-8"> <ul class="list-inline"> <li><a href="http://hk.uwenku.com/contact">聯系我們</a></li> <li>© 2020 HK.UWENKU.COM</li> <li><a target="_blank" href="https://beian.miit.gov.cn/">沪ICP备13005482号-4</a></li> <li><script type="text/javascript" src="https://v1.cnzz.com/z_stat.php?id=1280101193&web_id=1280101193"></script></li> <li><a href="http://www.uwenku.com/" target="_blank" title="优文库">简体中文</a></li> <li><a href="http://hk.uwenku.com/" target="_blank" title="優文庫">繁體中文</a></li> <li><a href="http://ru.uwenku.com/" target="_blank" title="поле вопросов и ответов">Русский</a></li> <li><a href="http://de.uwenku.com/" target="_blank" title="Frage - und - antwort - Park">Deutsch</a></li> <li><a href="http://es.uwenku.com/" target="_blank" title="Preguntas y respuestas">Español</a></li> <li><a href="http://hi.uwenku.com/" target="_blank" title="कार्यक्रम प्रश्न और उत्तर पार्क">हिन्दी</a></li> <li><a href="http://it.uwenku.com/" target="_blank" title="IL Programma di chiedere Park">Italiano</a></li> <li><a href="http://ja.uwenku.com/" target="_blank" title="プログラム問答園区">日本語</a></li> <li><a href="http://ko.uwenku.com/" target="_blank" title="프로그램 문답 단지">한국어</a></li> <li><a href="http://pl.uwenku.com/" target="_blank" title="program o park">Polski</a></li> <li><a href="http://tr.uwenku.com/" target="_blank" title="Program soru ve cevap parkı">Türkçe</a></li> <li><a href="http://vi.uwenku.com/" target="_blank" title="Đáp ứng viên">Tiếng Việt</a></li> <li><a href="http://fr.uwenku.com/" target="_blank" title="Programme interrogation Park">Française</a></li> </ul> </div> </div> </div> </div> </div> </footer> <!-- / footer --> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?f78a970f17b19a79fc477a3378096f29"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>