Author

Topic: [TIPS] फोरम थ्रेड सॉर्टिंग गाइड - नए धागे (thread) को पहल&#2375 (Read 107 times)

member
Activity: 422
Merit: 52
Bitcointalk फोरम में, यदि आप बोर्ड पर जाते हैं, तो डिफ़ॉल्ट सॉर्ट व्यवहार सबसे हाल के रिप्लाई को सॉर्ट करता है, लेकिन कभी आप हाल ही में बनाए गए धागे द्वारा सॉर्ट करना चाहते हैं, ताकि आप नवीनतम विषयों को आसानी से देख सकें। तो यह करना बहुत ही आसान है, यहाँ निचे बताया गया है:

पहले, उस बोर्ड पर जाएं, उदाहरण के लिए,  Meta बोर्ड में, URL होगा:
https://bitcointalk.org/index.php?board=24.0


फिर, बोर्ड URL के अंत में निम्नलिखित हाल ही में बनाए गए अधिकांश विषय के आधार पर क्रमबद्ध करें:
Code:
sort=first_post;desc


इसके अलावा, बोर्ड URL के बाद ";" जोड़ना मत भूलना, इससे नया URL बन जाएगा:
https://bitcointalk.org/index.php?board=24.0;sort=first_post;desc

This way you will be able to view the most recent thread that is created. Some people find it helpful using this code to find the latest announcement in bounty or altcoin board. In the code:
इस तरह आप सबसे हाल ही में बनाए गए धागे को देख पाएंगे। कुछ लोगो को ये कोड मदद करेगा उनको bounty altcoin बोर्ड में लेटेस्ट अनाउंसमेंट को ढूढने में
  • first_post का अर्थ है एक निश्चित सूत्र की पहली पोस्ट द्वारा सॉर्टिंग
  • desc का अर्थ है सबसे नए से लेकर सबसे पुराने तक




A.   थ्रेड सॉर्टिंग के लिए

1) यदि आप सबसे पुराना धागा देखना चाहते हैं, तो जोड़ें:
Code:
sort=first_post;asc
 or
Code:
sort=first_post
Actual URL (for Meta board): https://bitcointalk.org/index.php?board=24.0;first_post;asc  

Note: By default it is always sorting by ascending, so it is fine to not put "asc" here.

2) अधिकांश उत्तरों द्वारा क्रमबद्ध करें:
Code:
sort=replies;desc
वास्तविक URL (for Meta board): https://bitcointalk.org/index.php?board=24.0;sort=replies;desc

3) अधिकांश व्यूज द्वारा क्रमबद्ध करें:
Code:
sort=views;desc
वास्तविक URL (for Meta board): https://bitcointalk.org/index.php?board=24.0;sort=views;desc

4) सूत्र स्टार्टर (उस सूत्र के लेखक) के आधार पर क्रमबद्ध करें:
Code:
sort=starter
वास्तविक URL (for Meta board): https://bitcointalk.org/index.php?board=24.0;sort=starter

5) धागा विषय के आधार पर छाँटें:
Code:
sort=subject
वास्तविक URL (for Meta board): https://bitcointalk.org/index.php?board=24.0;sort=subject

6) थ्रेड्स का डिफ़ॉल्ट सॉर्टिंग व्यवहार वास्तव में है:
Code:
sort=last_post;desc




ऐसा इसलिए है क्योंकि यदि आप https://bitcointalk.org/index.php?board=24.0+last_post;desc डिफ़ॉल्ट के नाते फोरम सबसे पहले रिप्लाई पाये जाने वाले थ्रेड को दिखता है; आप वास्तव में के रूप में एक ही सॉर्टिंग देखेंगे



Code:
ये एक अंग्रेजी धागे का अनुवादन है: https://bitcointalk.org/index.php?topic=3158138.0
Jump to: