Newbie tutorial of WordPress theme modification

This tutorial is written for children's shoes who want to personalize the Wordpress theme but are struggling to get started.

When I first came into contact with Wordpress children's shoes, I may be very interested in a variety of Wordpress themes. I have tried to find my favorite among thousands of different themes, but I will eventually find that almost no theme can fully meet my own heart. What should I do? I can only change it by myself, but I have no knowledge of web page production, so I can only sigh with admiration, or ask people everywhere, and often run into difficulties everywhere. Here is a brief introduction to the basic knowledge of Wordpress template modification and the required tools and skills, hoping to serve as an introduction for novices.

In fact, the modification and production of the theme is not as complicated as expected, except that you need to create a world shaking Wordpress theme.

First, let's talk about the knowledge needed to modify the Wordpress template. Most Wordpress functions can be used in WP Official Codex It can also be said that it is fixed. It does not require in-depth study. It is OK to know where a function begins and ends. It is unnecessary to make mistakes when modifying the theme. The key is to master DIV+CSS. There are a lot of online tutorials. It is enough to learn the principles of modifying Wordpress templates roughly, that is, a few sentences of attribute writing. Because I am still learning, there is no ugliness here, so I can find a tutorial for you.

A complete set of WordPress templates shall at least include the following documents:

  • Style.css: style sheet file
  • Index.php: homepage template
  • Archive.php: article archive/category directory template
  • 404.php: 404 template
  • Comments. php: message/reply template
  • Footer.php: bottom template
  • Header.php: top template
  • Sidebar.php: sidebar template
  • Page.php: page template
  • Single.php: article page template
  • Functions. php: template functions
  • Search.php: search results template

Of course, there may be more than these files for some themes. For example, there are hundreds of HotNews Pro theme template files, but the above files are necessary for each set of templates.

Knowing the function of the above template can let you know which corresponding template should be modified on the current page.

Here is the key point of this article: If you want to do a good job, you must first sharpen your tools!

When many people think of web page creation tools, they will think of Dreamweaver (DW for short) in the "Three Swordsmen of Web Pages", which is called "WYSIWYG". That means that it was popular to use Table tables to create web pages. Now it is the era of DIV+CSS, and WYSIWYG advantages are no longer available. This DW is almost useless (I think). In addition, Adobe GoLive was the most commonly used web production tool in foreign countries. Due to the late launch of the Chinese version, DW became popular in China. The large-scale software for DIV+CSS web production was also the first to launch Adobe GoLive. However, the development of this software has stopped, unfortunately. Today's recommended tools are not these two expensive and bulky software. Modifying and creating Wordpress themes does not require any professional software at all, but it is not like some people boast that you can write themes with the system's own notepad.

First of all, you need to build a local PHP test environment to facilitate the modification of the template. Of course, you can also modify it in the Wordpress background theme editing page. It is OK to use it temporarily, but it is not suitable for situations with many modifications. There are many online tutorials on how to set up a local test environment, which will not be detailed here. It is recommended to use Wamp or phpStudy to search for it yourself.

Prerequisite tool software:

text editor

EmEditor (charging software), EditPlus (charging software), Notepad++(free)

The first two are paid software, and the latter is free and has very good functions, which is suitable for novices. You must not edit template files, especially Chinese templates, with the system's own notepad, or else the template will be borrowed. The Chinese template code is UTF-8 without BOM.

Firefox

Some people will ask, why use Firefox, the Internet Explorer that comes with the system, to browse the website? Of course, we don't use Firefox to browse the website, but use its powerful expansion ability to guide us.

When we want to modify the style and structure of a certain part, we will directly open the Wordpress theme template file or edit the theme in the background. The dense code will make the theme author dizzy after reading it, so we will often add some comments on key parts,

Comments in php are generally: <!-- XXX -->

In css: /**  XXX **/

But some annotations may only be known by the author himself. Therefore, it is difficult to find the part to be modified in the open template file. At this time, we will use Firefox extension: Firebug, Download address

IE browser also has a similar plug-in, but its function cannot be compared with that of Firefox extension. Some browsers integrate this function, such as Opera, which seems to be equally powerful.

Specific operation method

If you have installed Firefox and added Firebug extensions, you can continue to see how to modify the Wordpress theme.

■ Modify the text size of page elements

Take modifying the layout of HotNews Pro theme CMS and the text size of the latest article title as an example:

Mouse over the title of the latest article, right click to call up the menu and select "Use Firebug" to view the elements (as shown in the figure)

WordPress主题修改菜鸟教程-图片1

Then the Firebug window will be called up at the bottom of Firefox browser by default. The HTML structure of the current web page element is displayed on the left, and the style attribute of the current element selector, the file and the number of lines (as shown in the figure) are displayed on the right, in line 277 of the style.css file.

WordPress主题修改菜鸟教程-图片2

Using the text editing software described above, open the theme style.css file and find it on line 277:

  1. #post  h3 {
  2.      font-size 13px ;
  3.      font-weight bold ;
  4.     }

Modify the number 13 to the size you think is appropriate.

If there is no style in the current element selector Control font size font-size 13px ; Attribute, but the global font size setting, which can be added separately font-size 13px ; attribute

After looking at the above example, is it very simple? To modify the theme style, the key is to find the location where you need to modify the element selector name and style attribute.

I also use the same method to modify the theme template. Without Firebug extension, it is not easy to modify my own template.

■ How to determine the whole code of a certain web page element (module) for easy location adjustment.

Take HotNews Pro theme navigation menu moving to LOGO as an example:

First, use the above method to determine that the name of the outermost selector in the navigation menu is: top

Then, use the Notepad++text editor to open the template header.php at the top of the theme, search for the top location, and click the selector with the mouse. It will be found that Notepad++has clearly marked the beginning and end of the code for us (as shown in the figure):

WordPress主题修改菜鸟教程-图片3

The following is simple. Use the same method to find the end position of the outermost selector of the element under the navigation menu and move the code here.

The above are the basic methods and steps to modify the template. The so-called experts basically toss the template in this way. If you spend a day or two learning DIV+CSS, you will be more handy.

Another good extension is: Web Developer , we won't introduce it here. Please study it yourself.

Here's a reminder: it's not easy to make a theme. The author has spent countless hours and nights working hard for this. Please respect the author's hard work. Please keep the copyright link of the author when modifying the theme template. Don't be a shameless person who makes everyone BS.

Postscript: This blog was actually written at the beginning of last year, but I forgot to publish it. Today, I found it after background cleaning. I hope it will help you.

Most of the articles on this site are original and used for personal learning records, which may be helpful to you, for reference only!

 weinxin
My Wechat
WeChat copied
Copyright Notice
Please indicate the source and link of the original article reprinted on this site. Thank you for your cooperation!
five hundred and ninety-eight million eight hundred and forty-five thousand and six
 
 Robin
five hundred and ninety-eight million eight hundred and forty-five thousand and six
Comments one hundred and seventeen    Visitors one hundred and one    Author eleven
    •  Heiwo's Blog
      Heiwo's Blog three

      Support Brother Bird, sit on the sofa first!

        •  Babbling
          Babbling zero

          @ Heiwo's Blog @Black nest's blog: Thank you, robin. Benefited.

        •  two hundred and seventy-six million eighty thousand seven hundred and fifty-eight
          two hundred and seventy-six million eighty thousand seven hundred and fifty-eight one

          Front seats occupied

          •  Stalker m
            Stalker m three

            If you have html and css foundation, this is very simple
            Novice can't do it, mainly because there is no foundation

              •  Robin
                Robin

                @ Stalker m Well, if you have all these foundations, there is no need to read this article

                  •  Dreamed
                    Dreamed three

                    @ Robin Post_content), 0, 200, "...");?>It seems that all the characters captured by Brother Bird are English letters, but there is a problem when capturing Chinese characters. What should I do if I want to modify them?

                      •  Robin
                        Robin

                        @ Dreamed You can refer to the following for replacement
                        http://zmingcx.com/wordpress-theme-chinese-cut-off.html

                    •  Kay
                      Kay four

                      @ Stalker m Yeah~So we should see more, practice more and learn more

                      •  Stalker m
                        Stalker m three

                        @ Stalker m Also, say more EmEditor, which has been used for so long, has found that it is a paid software so far... It's hard to say how to crack domestic piracy

                          •  Robin
                            Robin

                            @ Stalker m It's a bit too boastful. It was cracked by foreign countries. Chinese people only copy

                              •  Stalker m
                                Stalker m three

                                @ Robin I don't know how to copy, but also... Chinese

                                  •  Robin
                                    Robin

                                    @ Stalker m The software itself is multilingual, including simplified Chinese

                            •  Waiting for thought
                              Waiting for thought two

                              I also came first!!

                              •  MAGI
                                MAGI four

                                Very good basic tutorial!

                                •  Compound interest
                                  Compound interest one

                                  Support Brother Bird. Good stuff.

                                  •  Fish loving aquarium
                                    Fish loving aquarium three

                                    It's very helpful to learn.

                                    •  I love meowing
                                      I love meowing three

                                      Poor English, worry~~~

                                      •  Don't worry about flying
                                        Don't worry about flying four

                                        Every article of Brother Bird is good····

                                        •  tomato
                                          tomato two

                                          Blogging is very tiring, but the more you toss it, the more enjoyable it is.

                                          •  Five dimensional space
                                            Five dimensional space four

                                            It is very suitable for beginners to learn. Thank you for your hard work.

                                            •  Five dimensional space
                                              Five dimensional space four

                                              Weak asked Brother Bird, could you add my blog as a friendship link?

                                              •  Taoke Street
                                                Taoke Street one

                                                Hehe~~It's very detailed. I'm waiting for Xiaobai to be taught

                                                •  Gothic revival
                                                  Gothic revival four

                                                  Top one

                                                  •  Inkless
                                                    Inkless two

                                                    I won't tell Brother Bird that I used the method mentioned above when I changed the theme, and it is this method that gave me a preliminary understanding of DIV+CSS. I feel very comfortable with Notepad++, but I used the Proud F12 shortcut key to review elements at the beginning, and I got used to it after a long time

                                                      •  Robin
                                                        Robin

                                                        @ Inkless Everyone who likes tossing is playing like this, but the novice doesn't know it yet
                                                        Aoyou thinks of my favorite in those days, but I don't know how many years have passed without using it. It should be the old yellow flower

                                                      •  Haoyun Blog
                                                        Haoyun Blog two

                                                        I use the theme of Brother Bird, which is very useful! ha-ha!

                                                        •  Door softness
                                                          Door softness five

                                                          Reprinted ha. Brother Bird.

                                                          •  Spoon
                                                            Spoon zero

                                                            Practical and good material, take it!

                                                            •  Eternal Tower Base
                                                              Eternal Tower Base three

                                                              Although I am not a novice, I am really a good tutorial.

                                                              •  beyiol
                                                                beyiol two

                                                                Brother Bird is a good man. He has good things. He has collected them in that area

                                                                •  Professional search
                                                                  Professional search one

                                                                  Brother Bird's article is very good. Thank you for your conscience

                                                                  •  Zero school
                                                                    Zero school zero

                                                                    The robin has always been imitated and never surpassed

                                                                    •  Zhang Hongxu
                                                                      Zhang Hongxu zero

                                                                      I always don't know how to change the theme. This time I have an idea. I will go back and reform myself. Thank you.

                                                                      •  gaer ta
                                                                        gaer ta zero

                                                                        Quietly watch the song fan lift

                                                                        •  libra
                                                                          libra zero

                                                                          Learning~
                                                                          High level

                                                                          •  Kunming Gastrointestinal Hospital
                                                                            Kunming Gastrointestinal Hospital one

                                                                            Practical articles

                                                                            •  cocll
                                                                              cocll three

                                                                              Go back and reform yourself, thank you. ha-ha

                                                                              •  Crystal Pendant
                                                                                Crystal Pendant two

                                                                                I have learned all these things, but I still feel like a layman when I get to the production theme

                                                                                •  Beijing seo
                                                                                  Beijing seo zero

                                                                                  It would be better if we could explain more details.

                                                                                  •  www.vps.ht
                                                                                    www.vps.ht one

                                                                                    I like it. I plan to learn how to redevelop wp. Hope the tutorial is more detailed!

                                                                                    •  Sense of technology
                                                                                      Sense of technology zero

                                                                                      Very good, study hard

                                                                                      •  Beauty pictures
                                                                                        Beauty pictures three

                                                                                        It's a good thing. It's useful for beginners

                                                                                        •  xlxl2010
                                                                                          xlxl2010 one

                                                                                          Excellent, just started to learn, a little abstract

                                                                                          •  Gamers
                                                                                            Gamers two

                                                                                            Chrome also integrates similar effects. Right click directly to review the element.

                                                                                            •  JaCall
                                                                                              JaCall four

                                                                                              My QQ 646083309

                                                                                              •  Beijing seo
                                                                                                Beijing seo two

                                                                                                http://www.seo3s.com/938.html Brother Bird, can you read this website? Why does the random code at the bottom of the article appear? How to solve it.

                                                                                                •  small bell
                                                                                                  small bell zero

                                                                                                  Hello, Brother Bird
                                                                                                  The theme I'm using doesn't support navigation. I followed the online search tutorial myself, and the layout was disordered, and there was no drop-down
                                                                                                  Can you help me take a look? Thank you, QvQ!
                                                                                                  http://www.gydgui.net/blog/ling/

                                                                                                  •  The brain is flooded
                                                                                                    The brain is flooded one

                                                                                                    Yes, you can refer to it. I am also doing a tutorial on the whole site production process of WordPress. From the page layout, I have only written two classes now, in order to improve my writing level.

                                                                                                      •  Robin
                                                                                                        Robin

                                                                                                        @ The brain is flooded The WP theme production tutorial has been written for a long time, and is not very useful for novices who do not understand DIV+CSS and HTML
                                                                                                        In fact, just learn DIV+CSS

                                                                                                          •  The brain is flooded
                                                                                                            The brain is flooded one

                                                                                                            @ Robin Just learn to write. If you don't write, you won't write. If you write, you will write. Ha

                                                                                                        •  Hammurabi
                                                                                                          Hammurabi zero

                                                                                                          Hello My wordpress theme articles are displayed in double columns by default

                                                                                                          •  Good article
                                                                                                            Good article zero

                                                                                                            The development and sale of Adobe GoLive ended on April 28, 2008. GoLive users can take advantage of a special upgrade to Dreamweaver 6. Translated from Adobe website. It seems that the authorities attach more importance to Dreamweaver

                                                                                                            •  friend
                                                                                                              friend zero

                                                                                                              Adobe GoLive is too old even at the beginning of last year
                                                                                                              After acquiring dw, there is no golive
                                                                                                              This update introduces

                                                                                                              •  wise and farsighted
                                                                                                                wise and farsighted zero

                                                                                                                I benefited a lot from reading your blogger's article. Thank you very much.

                                                                                                                •  wengshijie
                                                                                                                  wengshijie zero

                                                                                                                  I use CHROME to change the theme

                                                                                                                  •  girl student
                                                                                                                    girl student four

                                                                                                                    Yes, yes, definitely linked

                                                                                                                    •  Leading the show in Hunan
                                                                                                                      Leading the show in Hunan zero

                                                                                                                      The blog post of the blogger is well written. The FIREBUG of Firefox is not only applicable to WORDPRESS, but also compatible with other websites. I have known its power for a long time, but I didn't write a blog to share with you. Now I help you improve your blog, and hope to help more novice webmasters after publishing! thank you!

                                                                                                                        •  I love sports bike network
                                                                                                                          I love sports bike network seven

                                                                                                                          @ Leading the show in Hunan  :wink: No matter how good the theme is, it is impossible to fully satisfy your own personal ideas. Therefore, before the blog goes online, you often need to make a lot of changes to the theme template. It is quite necessary and important to understand the basics. I spent a lot of time and energy on my blog at the beginning, revised and changed a lot of details, and finally I was able to be like this and achieve the results I wanted!

                                                                                                                        •  lenovo ultrabook reviews
                                                                                                                          lenovo ultrabook reviews zero

                                                                                                                          I found that the themes I use are all written in PHP, and it is really difficult to make changes. If it is written in HTML, it will be easier. I modified the theme for the whole morning today, but failed. Alas~~~

                                                                                                                          •  366 Blogs
                                                                                                                            366 Blogs one

                                                                                                                            Brother, please help me. I use someone else's template. Some files don't appear {Rcloud: article archive page templates (archives. php)}. How can I modify them? I've been working for a whole month

                                                                                                                            •  The Ninth Tribe
                                                                                                                              The Ninth Tribe one

                                                                                                                              Brother Bird, good thing, turned away! thank you!

                                                                                                                              •  slineter
                                                                                                                                slineter one

                                                                                                                                Brother Bird, please ask me. When I call category_description() to get the description, it is always not displayed, but the category directory is normal. [img] http://slienter.com/wp-content/uploads/2013/09/categorydeserro.png [/img]

                                                                                                                                •  Billion push
                                                                                                                                  Billion push one

                                                                                                                                  Haowen, collected

                                                                                                                                  •  Computer Sky
                                                                                                                                    Computer Sky five

                                                                                                                                    Good article, thank you for sharing~~

                                                                                                                                    •  Weilong Blog
                                                                                                                                      Weilong Blog two

                                                                                                                                      Thanks for the blogger's intentions. To be honest, this theme of the blogger has influenced many people. I changed many themes and finally used this one!
                                                                                                                                      I am also a junior high school student. I have not learned programming professionally, but I only know some basic computer knowledge. But I prefer learning, and I like specialized research on everything, but my foundation is too poor, and I haven't gone deep!
                                                                                                                                      I also like tossing about the theme. Having read your article, it gave me a lot of confidence. I hope I can also use your theme to stir up trouble, hehe!
                                                                                                                                      By the way, as for the theme charge, I think the blogger can do it. I bought a theme of 40 yuan, but it didn't take long to exchange it for yours. Personally, if the price of the theme doesn't exceed 50 yuan, the effect should be good!

                                                                                                                                      •  Flagship store brand
                                                                                                                                        Flagship store brand one

                                                                                                                                        I haven't been here for a few days, but it has been updated again

                                                                                                                                        •  0371 Women's Information Network
                                                                                                                                          0371 Women's Information Network three

                                                                                                                                          Praise your study

                                                                                                                                          •  I love searching the Internet
                                                                                                                                            I love searching the Internet three

                                                                                                                                            Thanks for the blogger's intentions. To be honest, this theme of the blogger has influenced many people. I changed many themes and finally used this one!
                                                                                                                                            I am also a junior high school student. I have not learned programming professionally, but I only know some basic computer knowledge. But I prefer learning, and I like specialized research on everything, but my foundation is too poor, and I haven't gone deep!

                                                                                                                                            •  Fashion Lexun
                                                                                                                                              Fashion Lexun three

                                                                                                                                              Thank the blogger for his efforts. To be honest, xuexila has learned

                                                                                                                                              •  Small Z
                                                                                                                                                Small Z three

                                                                                                                                                Brother Bird, ask how to delete the time section below the navigation bar?

                                                                                                                                                •  Say thank you again
                                                                                                                                                  Say thank you again zero

                                                                                                                                                  The theme design is beautiful and generous. Thank you very much for sharing such a good theme

                                                                                                                                                  •  aunsen
                                                                                                                                                    aunsen five

                                                                                                                                                    How's Brother Bird?

                                                                                                                                                    •  Hurt the city
                                                                                                                                                      Hurt the city zero

                                                                                                                                                      Robin, what software is used to design the logo of your website?

                                                                                                                                                      •  Bailai Xiaosheng
                                                                                                                                                        Bailai Xiaosheng two

                                                                                                                                                        This is good. Thanks for sharing.

                                                                                                                                                        •  cool breeze
                                                                                                                                                          cool breeze zero

                                                                                                                                                          Have an in-depth understanding of WordPress topics.

                                                                                                                                                          •  March
                                                                                                                                                            March two

                                                                                                                                                            Brother Bird's article is of great help to us novices

                                                                                                                                                            •  Xiamen SEO
                                                                                                                                                              Xiamen SEO zero

                                                                                                                                                              Landlord, when I installed your theme, there was a switch between blog and CMS in the background. The default blog will make an error when I switch to CMS,

                                                                                                                                                              Prompt: [img] http://www.wpbaike.net/bbs/data/attachment/forum/201404/25/222824wlsnrrtccd0dorss.jpg.thumb.jpg [/img]
                                                                                                                                                              I built it locally,

                                                                                                                                                                •  Robin
                                                                                                                                                                  Robin

                                                                                                                                                                  @ Xiamen SEO You can download the latest version or watch this
                                                                                                                                                                  http://zmingcx.com/local-test-hotnewspro2-7-error-solution.html

                                                                                                                                                                •  Women's Clothing House
                                                                                                                                                                  Women's Clothing House zero

                                                                                                                                                                  Thanks for sharing

                                                                                                                                                                  •  suisui
                                                                                                                                                                    suisui zero

                                                                                                                                                                    At present, the company needs to build a website. Your works are very good. I wonder if you have time at present?

                                                                                                                                                                    •  xiaochang
                                                                                                                                                                      xiaochang zero

                                                                                                                                                                      Blogger, why did I use your template? Why is it not displayed on the right side of the article details page? I saw that there was no problem when the code called the module on the right. The data read was blank, and I didn't know where the error occurred.

                                                                                                                                                                      •  arm linux
                                                                                                                                                                        arm linux zero

                                                                                                                                                                        This is very good You, support

                                                                                                                                                                        •  wordpress boy
                                                                                                                                                                          wordpress boy one

                                                                                                                                                                          Very practical tutorial, learned

                                                                                                                                                                          •  Ality theme
                                                                                                                                                                            Ality theme one

                                                                                                                                                                            Brother Bird, I just used your theme, Ality, and I haven't found your way to publish announcements for a long time. Can you tell me that I have the skills of CSS, but I don't want to bother with code. If I need to write some code, it's OK.

                                                                                                                                                                              •  Ality theme
                                                                                                                                                                                Ality theme one

                                                                                                                                                                                @ Ality theme stay http://zmingcx.com/wordpress-theme-ality.html Found on

                                                                                                                                                                              •  Baby Beast
                                                                                                                                                                                Baby Beast three

                                                                                                                                                                                How can I add a link to the article summary on the home page? Click the article title to access it. The first time I used the building owner's mobile website, I always clicked on the summary to access it, but there was no response. I thought it was a bug, but later I learned that I had to click on the article title and image to access the article

                                                                                                                                                                                •  Baby Beast
                                                                                                                                                                                  Baby Beast three

                                                                                                                                                                                  How can I remove the views after reading times?

                                                                                                                                                                                  •  Shallow
                                                                                                                                                                                    Shallow zero

                                                                                                                                                                                    Learning

                                                                                                                                                                                    •  Xibei Blog
                                                                                                                                                                                      Xibei Blog three

                                                                                                                                                                                      Good theme, fresh and natural.

                                                                                                                                                                                      •  Spinach
                                                                                                                                                                                        Spinach one

                                                                                                                                                                                        Brother Bird, is such template modification suitable for adaptive theme modification? I'm a novice, and the homepage is full of waterfall frames. I want to add several CMS classification columns like those at the bottom of your homepage, but I don't know how to modify them. Is it very difficult? :razz:

                                                                                                                                                                                          •  Spinach
                                                                                                                                                                                            Spinach one

                                                                                                                                                                                            @ Spinach And how did you make this search box? You want to change it to the search box on the top right of your blog.

                                                                                                                                                                                              •  Boke112 navigation
                                                                                                                                                                                                Boke112 navigation five

                                                                                                                                                                                                @ Spinach Template modification is applicable to all types of topics. There is also the function of the search box, which is hard to explain in three or two languages. It is recommended to download the theme of entity directly to study. This topic also has this search box

                                                                                                                                                                                            •  China's new intelligent technology media
                                                                                                                                                                                              China's new intelligent technology media one

                                                                                                                                                                                              I have been following the blogger's blog and hope to share more original Chinese themes~

                                                                                                                                                                                              •  Kathy
                                                                                                                                                                                                Kathy zero

                                                                                                                                                                                                Brother Zhichen, what should we do if there is nothing to be modified, but the website suddenly fails, but there is no way to log in and modify the account? Find the answer For details, please click www.allstarglobal.ca Emergency

                                                                                                                                                                                                •  Qingxian
                                                                                                                                                                                                  Qingxian two

                                                                                                                                                                                                  Why can't I install my firebug

                                                                                                                                                                                                  •  Qingxian
                                                                                                                                                                                                    Qingxian two

                                                                                                                                                                                                    You can modify the style. How can you modify the element? Web developer is an api file

                                                                                                                                                                                                    •  2 Hungry
                                                                                                                                                                                                      2 Hungry zero

                                                                                                                                                                                                      pretty good

                                                                                                                                                                                                      •  Mingyunfeng Blog
                                                                                                                                                                                                        Mingyunfeng Blog zero

                                                                                                                                                                                                        I didn't do much research, so I bought one and used it directly; It seems that we need to study hard.

                                                                                                                                                                                                        •  Just like playing MC Chinese website
                                                                                                                                                                                                          Just like playing MC Chinese website one

                                                                                                                                                                                                          Good, good, but I can't understand it. I have a QAQ for my junior high school dog :cry:
                                                                                                                                                                                                          [img] http://www.92wmc.cn/wp-content/uploads/6fce041872c9c930453c0126b879707d.jpg [/img]

                                                                                                                                                                                                          •  Cheng Zhiwei's Blog
                                                                                                                                                                                                            Cheng Zhiwei's Blog zero

                                                                                                                                                                                                            Good, worth watching!

                                                                                                                                                                                                            •  Workshop record
                                                                                                                                                                                                              Workshop record zero

                                                                                                                                                                                                              Where to modify the theme widget!!

                                                                                                                                                                                                              •  How to play with stocks
                                                                                                                                                                                                                How to play with stocks one

                                                                                                                                                                                                                Not bad, thanks.

                                                                                                                                                                                                                •  The moon climbs the stairs
                                                                                                                                                                                                                  The moon climbs the stairs five

                                                                                                                                                                                                                  This article is good! I just found out! :roll:

                                                                                                                                                                                                                 anonymous

                                                                                                                                                                                                                Comment

                                                                                                                                                                                                                Anonymous netizens
                                                                                                                                                                                                                 :?:  :razz:  :sad:  :evil:  :!:  :smile:  :oops:  :grin:  :eek:  :shock:  :???:  :cool:  :lol:  :mad:  :twisted:  :roll:  :wink:  :idea:  :arrow:  :neutral:  :cry:  :mrgreen:

                                                                                                                                                                                                                Drag the slider to complete validation