How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin कैसे एसईओ अनुकूलन WordPress 2,5 ब्लॉग वेब पेज शीर्षक करने के लिए इष्टतम शीर्षक Plugin बिना
Each web pages on Internet will normally has a title that is displayed on the top of all web browsers, and become description or title for the tab on tabbed-browsing support browsers such as Firefox and IE7 or IE8, and also as descriptive text when the browser window is minimized to taskbar. इंटरनेट पर होगा कि सामान्य रूप से सभी वेब ब्राउज़र के शीर्ष पर प्रदर्शित की जाती है एक शीर्षक है प्रत्येक वेब पन्नों, और विवरण या शीर्षक tabbed पर पट्टी के लिए बनने-वर्णनात्मक पाठ के रूप में फ़ायरफ़ॉक्स और IE7 या IE8 जैसे ब्राउज़िंग समर्थन ब्राउज़रों, और भी जब ब्राउज़र विंडो कार्यपट्टी से कम है. The webpage title is also important for SEO, acronym for search engine optimization, which intends to promote and improve the ranking of the page and site on search engines. इस वेबपृष्ठ शीर्षक भी एसईओ, जो बढ़ावा देने के लिए और खोज इंजनों पर पेज और साइट की रैंकिंग को बेहतर बनाने का इरादा रखता है खोज इंजन अनुकूलन के लिए, संक्षिप्त के लिए महत्वपूर्ण है.
WordPress blogging system uses WordPress ब्लॉगिंग प्रणाली का उपयोग करता है wp_title() template tag wp_title () टैग टेम्पलेट to call and displays or returns the title of the page. फोन करने और प्रदर्शित करता है या रिटर्न पृष्ठ के शीर्षक. Previously, wp_title function is straight forward, and without flexibility, where the separator is always displayed in front of the page title, making bloggers and webmasters unable to put post and page title in front of website name, which believed to be able to boost search engine ranking due to more unique and different titles instead of a standard website title. पहले, wp_title समारोह ब्लॉगर्स और वेबमास्टरों और पृष्ठ शीर्षक वेबसाइट नाम के सामने है, जो खोज को बढ़ावा देने के लिए योग्य माना पोस्ट करने में असमर्थ रही सीधे आगे है, और लचीलापन है, जहां विभाजक हमेशा पृष्ठ शीर्षक के सामने प्रदर्शित की जाती है, बिना इंजन रैंकिंग की वजह से अधिक अद्वितीय और विभिन्न शीर्षकों के बजाय एक मानक वेबसाइट शीर्षक.
As before WordPress v2.5, wp_title tag is pretty much static, a lot of users rely on पहले WordPress v2.5, wp_title टैग काफी अधिक स्थिर है, प्रयोक्ताओं की एक बहुत पर भरोसा Optimal Title plugin इष्टतम शीर्षक प्लगइन to achieve the the optimization to move the post and page title to the front of blog or site title. ब्लॉग या साइट शीर्षक के सामने वाले भाग को पद और पृष्ठ शीर्षक को स्थानांतरित करने के लिए इस अनुकूलन को प्राप्त करने के लिए. However, there is no longer a need for any plug-in from WordPress version 2.5 onwards. हालांकि, वहाँ अब कोई प्लग के लिए एक की जरूरत में WordPress संस्करण 2.5 के बाद से है.
WordPress 2.5 has added a separator location argument to built-in wp_title template tag that allows users to define whether the separator should be printed before or after the title of the page. WordPress 2.5 का निर्माण करने के लिए एक विभाजक स्थान तर्क जोड़ा गया है टेम्पलेट wp_title में उपयोगकर्ताओं कि विभाजक से पहले या पृष्ठ के शीर्षक के बाद मुद्रित किया जाना चाहिए परिभाषित करने की अनुमति देता है टैग. As such, bloggers who upgrade to WordPress 2.5 or new WordPress 2.5 installation can directly use the WordPress built-in wp_title function instead of additional plugin to optimize the blog pages title. इस प्रकार, ब्लॉगर्स जो WordPress 2.5 करने के लिए या नई WordPress 2.5 स्थापना सीधे अतिरिक्त प्लगइन के बजाय इस ब्लॉग पेज शीर्षक का अनुकूलन करने के लिए WordPress निर्मित wp_title समारोह में उपयोग कर सकते हैं उन्नयन.
Typically, most WordPress theme design will have the following line of code to display a page title: आमतौर पर, सबसे WordPress थीम डिजाइन कोड का एक पृष्ठ शीर्षक प्रदर्शित करने के लिए निम्नलिखित लाइन होगा:
<title><?php bloginfo('name'); ?> <?php wp_title(); ?></title>
The code will print blog name first, followed by wp_title which firstly print a seperator, which by default is » (») symbol, and then continue with post title or page title. कोड नाम पहला ब्लॉग है, जो सबसे पहले जो द्वारा डिफ़ॉल्ट »(») प्रतीक, और तब पोस्ट शीर्षक या पृष्ठ शीर्षक के साथ जारी है एक seperator, प्रिंट wp_title बाद प्रिंट जाएगा. To change the separator location to the right or behind the post title so that the sequence of blog title and post title can be changed, simply change the code to the following: सही करने के लिए विभाजक के स्थान को बदलने के लिए या पोस्ट शीर्षक के पीछे ताकि शीर्षक और पोस्ट शीर्षक ब्लॉग के अनुक्रम बदला जा सकता है, बस निम्नलिखित करने के लिए कोड बदलाव:
<title><?php wp_title(' »', true, 'right'); ?> <?php bloginfo('name'); ?></title>
The values for first two parameters are default, which can be omitted, but some users reportedly that the WordPress will return 500 Internet Server Error when first 2 values are removed. पहले दो मापदंडों के मूल्यों जो छोड़े गए किया जा सकता है डिफ़ॉल्ट, लेकिन कुछ उपयोगकर्ताओं को कथित कि WordPress जब पहली 2 मूल्यों को हटा रहे हैं 500 इंटरनेट सर्वर त्रुटि लौट जाएगा. Beside, some bloggers may want to beautify the title with space or change the separator, so it's recommended to type in the value want to use. इसके अलावा, कुछ ब्लॉगर्स अंतरिक्ष के साथ शीर्षक सुशोभित करने के लिए या विभाजक बदलना है, तो यह मान में टाइप करने के लिए सिफारिश की है चाहता हूँ मई का उपयोग करना चाहते हैं. Note the the last argument determine the location of the separator, which must have the value of 'right' for the separator to be appended after the post title. इस अंतिम बहस के विभाजक की जो 'की विभाजक के लिए पोस्ट शीर्षक के बाद संलग्न होने का अधिकार' के मूल्य होगा स्थान, निर्धारित नोट. Any other value will have the separator placed in front of (to the left of) the post title. कोई अन्य मान के) के बाद छोड़ दिया शीर्षक के विभाजक के सामने (करने के लिए रखा गया होगा.
Usage and Parameters for wp_title() since WordPress 2.5 उपयोग के लिए पैरामीटर wp_title WordPress 2.5 () के बाद से
<?php wp_title('sep', echo, 'seplocation'); ?>
sep (string): Text to display before or after of the post title (ie the separator). Sep (स्ट्रिंग): पाठ से पहले या बाद शीर्षक के बाद () ने विभाजक अर्थात् प्रदर्शित करने के लिए. By default (if sep is blank) then the » (») symbol will be placed before or after (specified by the seplocation) the post title. डिफ़ॉल्ट रूप से (यदि Sep) तो »(») प्रतीक से पहले या बाद रखा जाएगा (इस seplocation द्वारा) पोस्ट शीर्षक निर्दिष्ट रिक्त है.
echo (boolean): Echo the title (True) or return the title for use as a PHP string (False). (boolean): इको शीर्षक (यह सच है) या एक PHP स्ट्रिंग के रूप में प्रयोग (झूठा) के लिए शीर्षक वापस गूंज. Valid values is either 1 (True) which is also default value and 0 (False). मान्य मान या तो 1 (यह सच है), जो भी है और मूल्य डिफ़ॉल्ट है 0 (झूठा).
seplocation (string): Defines the location of where the sep string prints in relation to the title of the post. seplocation (स्ट्रिंग): के स्थान को परिभाषित जहां पोस्ट के शीर्षक के संबंध में Sep स्ट्रिंग प्रिंट. For all values except 'right', the sep value is placed in front of (to the left of) the post title. 'के अलावा सभी मूल्यों के लिए ठीक है', को Sep मूल्य के सामने (करने के लिए रखा जाता है की बाईं) पोस्ट शीर्षक. If the value of seplocation is 'right' then the sep string will be appended after the post title. यदि seplocation के मूल्य 'सही' तो Sep स्ट्रिंग पद शीर्षक के बाद संलग्न किया जाएगा.
IMPORTANT : You're reading a machine translated page which is provided "as is" without warranty. महत्वपूर्ण: तुम एक यंत्र के रूप में "वारंटी के बिना होता है, जो" प्रदान की जाती है पृष्ठ अनुवाद पढ़ रहे हैं. Unlike human translation, machine translation does not understand the grammar, semantics, syntax, idioms of natural language, thus often produce inaccurate and low quality text which is misleading and incomprehensible. मानव अनुवाद के विपरीत, मशीन अनुवाद, जिससे अक्सर गलत और निम्न गुणवत्ता पाठ जो गुमराह कर रहे हैं और समझ से बाहर उपज का व्याकरण, अर्थ विज्ञान, वाक्यविन्यास, प्राकृतिक भाषा के मुहावरे को समझ नहीं है. Thus, please refer to इस प्रकार, कृपया देखें original English article मूल अंग्रेजी लेख when in doubt. जब संदेह में है.
Related Articles संबंधित लेख
- Make WordPress Blog More Secure Using Secret Key बनाओ WordPress ब्लॉग अधिक सुरक्षित गुप्त कुंजी का प्रयोग
- How to Fetch and Show RSS Feeds on WordPress Blog (Atom/RSS Aggregator Plugins) कैसे (एटम / आरएसएस Aggregator Plugins) ले आओ और दिखाना आरएसएस फ़ीड WordPress ब्लॉग पर करने के लिए
- Media Buttons Disabler Plugin to Remove “Add Media” Icons in WordPress 2.5 मीडिया बटंस Disabler Plugin "मीडिया जोड़ें WordPress 2.5 में" icons को दूर करने के लिए
- Disable WordPress 2.5 Flash Image/Video/Media Uploader with Plugin अक्षम WordPress 2.5 फ्लैश छवि / वीडियो / मीडिया अपलोडर Plugin के साथ
- Notification Emails Not Send After Comment Approval in WordPress 2.5 and 2.5.1 अधिसूचना नहीं ईमेल टिप्पणी स्वीकृति WordPress 2,5 और 2.5.1 के बाद भेजें
- WordPress 2.5.1 Released for Download WordPress 2.5.1 डाउनलोड करने के लिए जारी
- WordPress 2.5 Released for Free Download WordPress 2.5 मुफ्त डाउनलोड करने के लिए जारी
- Workaround to Override WordPress Shortcode and Display the [] Brackets Tags Workaround अधिरोहण WordPress Shortcode और प्रदर्शित करने के लिए [] brackets टैग
- PHP Fatal Error on Call to Add_Query_Var in Taxonomy.php After Upgrading to WordPress 2.5 RC2 PHP घातक त्रुटि को फोन पर Add_Query_Var को Taxonomy.php में WordPress 2.5 RC2 को अपग्रेड करने के बाद
- WordPress 2.5 RC2 Released for Download WordPress 2.5 RC2 डाउनलोड करने के लिए जारी










































February 1st, 2009 06:25 1 फ़रवरी, 2009 06:25
Привет, статья интересная и я тоже процитирую у себя в блоге Привет, статья интересная и я тоже процитирую у себя в блоге
January 28th, 2009 13:45 जनवरी, 28 2009 13:45
Thanks for this tip, I found it very helpful. इस टिप के लिए धन्यवाद, मैं इसे बहुत उपयोगी पाया गया.
December 16th, 2008 12:25 दिसम्बर, 16 2008 12:25
Hi, नमस्ते,
I recently uninstalled ALL in One SEO pack, and found your site. मैं हाल ही में एक एसईओ पैक में, सभी रद्द की और अपनी साइट को मिला. Thanks for the tips! इस सुझाव के लिए धन्यवाद!
October 23rd, 2008 09:56 23 अक्टूबर, 2008 09:56
I'ma new commer on wordpress, I still confused on how to make my home page title like this: WordPress पर I'ma नए commer, मैं अभी भी कैसे इस तरह मेरे घर पृष्ठ शीर्षक पर भ्रमित करने के लिए:
automatically! अपने आप!
LaptopGarden.Net - Notebook, Laptop, UMPC, Tablet PC, Peripheral Latest News. LaptopGarden.Net - नोटबुक, लैपटॉप, UMPC, Tablet PC, परिधीय नवीनतम समाचार. and Reviews और समीक्षा
What should code I entered on blog? क्या मैं ब्लॉग पर कोड प्रविष्ट करना चाहिए?
thanks! धन्यवाद!
May 6th, 2008 19:17 6 मई, 2008 19:17
I use the all in one seo add on to seo optimize wordpress. मैं सभी एक एसईओ में WordPress का अनुकूलन एसईओ को जोड़ने का उपयोग करें.
http://wordpress.org/extend/plugins/all-in-one-seo-pack/ http://wordpress.org/extend/plugins/all-in-one-seo-pack/
April 5th, 2008 02:05 अप्रैल, 5 वीं 2008 02:05
[...] reading How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin at Tip and [...] [...] पढ़ने कैसे एसईओ अनुकूलन WordPress 2,5 ब्लॉग वेब पेज शीर्षक करने के लिए इष्टतम शीर्षक Plugin बिना टिप पर और [...]
March 30th, 2008 18:31 मार्च, 30 2008 18:31
[...] How to SEO Optimize WordPress 2.5 Blog Web Page Title Without Optimal Title Plugin. [...] कैसे एसईओ अनुकूलन WordPress 2,5 ब्लॉग वेब पेज शीर्षक इष्टतम शीर्षक Plugin के बिना करने के लिए. [...] [...]