8 Comments

  1. 兄台,想请教一下,如何才能把这个主题设置的如同你的DEMO图片一样?

    如能解释一二,不胜感谢!!

  2. @jackfans
    Hi,

    这个Demo图片是这样得到的:
    主页设置为使用一个Page页面. 先增加一个page, 在右边模板的地方选择Homepage. 自己写的内容会出现在最上面. “Recent posts”自动产生.
    Featured posts 部分是使用”WordPress Popular Posts”插件得到的. 安装这个插件后这部分就会出现了.

    右侧边栏上方的部分是一个text框, 内容是自己加的.
    twitter和feed可以使用一个自己喜欢的图标.
    分享是使用的 addthis.com 的.
    搜索框是使用的google custom search.

  3. Thanks a lot !!!

    感谢Eric!

    By the way , I also use “ercik” for my niche name for years !

    1. Hi,

      If you want to change the (which appears in the browser’s window/tab title bar), you can simply edit the header.php file if you know a little about PHP. Find these code:

      <title>
      <?php
      if (is_category()) {
          _e('Topic: ');
      } else if (is_tag()) {
          _e('Tag: ');
      } else if (is_home()) {
          bloginfo('description');
      }
      
      $pageNumber = get_query_var('paged');
      $pageNumber = $pageNumber ? $pageNumber : 1;
      
      if ($pageNumber && $pageNumber > 1) {
          wp_title('', true, 'right');
          _e(' - ');
          _e("$pageNumber");
          _e(' | ');
      } else {
          wp_title('|', true, 'right');
      }
      bloginfo('name');
      ?>
      </title>
      

      and you can change it to whatever you like.

      If you just want to make the other plugins change the title, you may try to change these code to:

      <title>
      <?php
          wp_title('', true, 'right');
      ?>
      </title>
  4. I had been searching for creative concepts for my own web site and
    noticed ur blog post, “RGBlite WordPress Theme – Web Tutorials – Fclose.
    com”, do you care in the event that I personally start using
    a handful of of ur tips? Thx -Katia

Leave a Reply

Your email address will not be published. Required fields are marked *