Teach you by hand: WordPress multi-language switching artifacts, without plug-ins can also be easy to deal with!

Do you want to implement multi-language support for your WordPress website without relying on plugins? This article will take you step by step to do it manually! HTML Multi-language switching function allows you to control the page language display, customization flexibility, not limited by the plug-in.

Picture [1]-Subvert the cognition! WordPress multi-language switch without plug-ins can be realized in seconds!

I. Why choose to manually set up multi-language?

As we all know.WordPress Plugin(such as WPML, Polylang) powerful, but not all projects are suitable for multi-language management through plug-ins, such as static sites, lightweight projects or sites with high performance requirements, etc., these cases manually set up multi-language through the HTML is more appropriate, the typical application scenarios include:

  • Single page/landing page projects (without dynamically generated content)
  • Low-cost projects (savings on plug-in fees)
  • right SEO High control requirements (manual configuration) hreflang--For specifying the language and geolocation of web pages,Meta)
  • Simple site supporting only 2~3 languages

Second, the core principle: through HTML tags and JavaScript to achieve language switching

The core idea is:

  • Write content in different languages in advance
    Put text in Chinese, English and other different languages in the web page.
  • "Language tagging" of content
    Use class names or custom attributes to mark clearly what is Chinese and what is English.
  • Switching with JavaScript
    When the user clicks the language button, theJavaScript Responsible for showing the corresponding language and hiding the others.
  • Do SEO at the same time
    homepage <head> Add hreflang Markup to let search engines know which page corresponds to which language, and to enhance the user experience with toggle buttons

HTML Multilingual Architecture Design Example

Assuming you want to support English (en) respond in singing Chinese (zh)The page structure code example is as follows:

<!-- 标题 -->
<h1 class="lang" data-lang="en">Welcome to My Website</h1>
<h1 class="lang" data-lang="zh">Welcome to my website.</h1>

<!-- 正文段落 -->
<p class="lang" data-lang="en">We offer high-quality services tailored to your needs.</p>
<p class="lang" data-lang="zh">We provide high quality services to fulfill your needs.</p>

<!-- 切换语言按钮 -->
<button onclick="switchLanguage('en')">English</button>
<button onclick="switchLanguage('zh')">Chinese</button>

JS Script Control Language Switching

{
      el.style.display = el.dataset.lang === lang ? 'block' : 'none';
    });

    // Store the user selections
    localStorage.setItem('selectedLang', lang);
  }

  // Automatically switch based on the user's last selection when the page loads.
  window.onload = function() {
    const savedLang = localStorage.getItem('selectedLang') || 'en';
    switchLanguage(savedLang);
  }; }
</script

Overview: Multiple copies of content (in different languages) are actually written on the page, and the JS script controls which language is displayed via buttons. The browser remembers which language the user has selected, avoiding the need to re-click each time.

A sample rendering page is shown below:

Picture [2]-Subvert the cognition! WordPress multi-language switch without plug-ins can be realized in seconds!
Picture [3]-Subvert the cognition! WordPress multi-language switch without plug-ins can be realized in seconds!

Fourth, SEO optimization recommendations: do not forget <link hreflang> and Meta Settings

In order for search engines to recognize the different language versions of the page, it is recommended to add the following <head> Tags (HTML document header container, used to define document attributes and contain metadata, script references and other information):


If your website is Single page application (SPA mode), that is, all the content is switched in one page, then it is better to Include the language logo in the web siteThe

  • It is possible to use #lang=zh This form:
    👉 For example https://example.com/#lang=zh Indicates a Chinese page.
  • The URL parameter can also be used:
    👉 For example https://example.com/?lang=en Indicates an English page.

There are two advantages to this:

  • Better user experience: Users can directly open content in the corresponding language when refreshing a page or copying a link to someone else.
  • SEO amicably: You can dynamically change the language parameter of the URL according to the </code> respond in singing <code><meta></code> tags that allow search engines to recognize each language version.</li> </ul> <h2 class="wp-block-heading">V. How to organize multilingual resources? Single Page vs Multi-Page Structure Comparison</h2> <figure class="wp-block-table"><table class="has-fixed-layout"><thead><tr><th class="has-text-align-center" data-align="center">paradigm</th><th class="has-text-align-center" data-align="center">vantage</th><th class="has-text-align-center" data-align="center">drawbacks</th></tr></thead><tbody><tr><td class="has-text-align-center" data-align="center">Single Page Switching</td><td class="has-text-align-center" data-align="center">Lightweight pages, fast switching, suitable for small sites</td><td class="has-text-align-center" data-align="center">Not good for SEO sub-language inclusion</td></tr><tr><td class="has-text-align-center" data-align="center">multi-page architecture</td><td class="has-text-align-center" data-align="center">SEO friendly and easy to optimize independently for each language</td><td class="has-text-align-center" data-align="center">Complexity of management and volume of documentation</td></tr></tbody></table></figure> <p>Recommendation:</p> <ul class="wp-block-list"> <li><strong>Enterprise official website</strong> maybe <strong>Product landing pages</strong>: Recommended single page multilingual;</li> <li><strong>Blogs/content-based websites</strong>: Recommended separate pages for each language;</li> </ul> <h2 class="wp-block-heading">Six, advanced skills: with CSS and structural optimization to enhance the experience of the</h2> <p>When doing multi-language switching, you can also add some small details to make the user experience better:</p> <ul class="wp-block-list"> <li><strong>Display the current language of the browser</strong> <ul class="wp-block-list"> <li>exist<a href="https://www.361sale.com/en/56187/" target="_blank" rel="noreferrer noopener"> HTML tags</a>Write language attributes on it, for example: <code><html lang="en"> <!-- 表示英文页面 --> <html lang="zh"> <!-- 表示中文页面 --></code></li> <li>This way browsers and search engines know what language the current page is in.</li> </ul> </li> <li><strong>Supplement with meta tags</strong> <ul class="wp-block-list"> <li>exist <code><head></code> Riga: <code><meta name="language" content="en"></code></li> <li>It's like putting a little label on the page to help search engines recognize the language version more clearly.</li> </ul> </li> <li><strong>Addition switching animation</strong> <ul class="wp-block-list"> <li>When switching languages, you can use CSS animations to make text "fade in and out" for a smoother look.</li> <li>Example: <code>.lang { transition: opacity 0.3s ease; /* gradient effect when switching */ }</code></li> </ul> </li> </ul> <h2 class="wp-block-heading">VII. Summary and recommendations</h2> <p>By setting up a multilingual website with manual HTML + JS, you get a lighter, more flexible multilingual solution, avoiding the bloat and potential conflicts that come with plugin bindings, controlled SEO structure and user experience.</p> <p>However, this approach is more suitable for<strong>Fixed content structure</strong>,<strong>Low number of languages</strong>,<strong>Basic knowledge of SEO</strong>of users. If you have a larger site or update content frequently, it's still recommended to use a mature plugin to simplify management.</p> <br><table> <thead> <tr class="row-1 odd"> <th class="column-1" colspan="2" style="background-color: #206be7;color:#fff; text-align:left;">Contact Us</th> </tr> </thead> <tbody class="row-hover"> <tr class="row-2 even"> <td class="column-1" style="text-align:left;"> <a href="#" style="color:#ea4c89; font-size:20px; font-weight:bold;" target="_blank"> Can't read the tutorial? Contact us for a free answer! Free help for personal, small business sites! </a> </td> <td class="column-2" rowspan="5" style="text-align:center; vertical-align:middle;"> <div style="display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%;"> <img decoding="async" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-lg.svg" data-src="https://www.361sale.com/wp-content/uploads/2024/11/20241121100828475-1732154895969.png" alt="Customer Service" style="width:180px; height:auto; margin-bottom:10px;"> <div style="font-weight:bold; color:#333;">Customer Service</div> </div> </td> </tr> <tr class="row-3 odd"> <td class="column-1">① <a href="#" style="color:red" target="_blank"><strong>Tel: 020-2206-9892</strong></a></td> </tr> <tr class="row-4 even"> <td class="column-1">② <a href="#" style="color:#28a745" target="_blank"><strong>QQ咨询:1025174874</strong></a></td> </tr> <tr class="row-5 odd"> <td class="column-1">(iii) <a href="#" style="color:#2997f7" target="_blank" rel="noopener"><strong>E-mail: info@361sale.com</strong></a></td> </tr> <tr class="row-6 even"> <td class="column-1">④ <a href="#" style="color:#aa6c14" target="_blank" rel="noopener"><strong>Working hours: Monday to Friday, 9:30-18:30, holidays off</strong></a></td> </tr> </tbody> </table> <div class="em09 muted-3-color"><div><span>©</span> Reprint statement</div><div>This article was written by WoW</div><div class="posts-copyright"><p>Link to this article:<a href="https://www.361sale.com/en/76362" title="Teach you by hand: WordPress multi-language switching artifacts, without plug-ins can also be easy to deal with!" target="_blank">https://www.361sale.com/en/76362</a></br>The article is copyrighted and must be reproduced with attribution.</p></div></div> </div> <div class="text-center theme-box muted-3-color box-body separator em09">THE END</div><div class="theme-box article-tags"><a class="but ml6 radius c-yellow" title="See more articles on this topic" href="https://www.361sale.com/en/topics/wordpress-tutorial"><i class="fa fa-cube" aria-hidden="true"></i>WordPress Tutorial</a><a class="but ml6 radius c-green" title="See more articles on this topic" href="https://www.361sale.com/en/topics/zxjz"><i class="fa fa-cube" aria-hidden="true"></i>WP self-taught website builder</a><a class="but ml6 radius c-blue" title="See more articles in this category" href="https://www.361sale.com/en/wordpress"><i class="fa fa-folder-open-o" aria-hidden="true"></i>WordPress</a><br><a href="https://www.361sale.com/en/tag/wordpress%e4%b8%8d%e7%94%a8%e6%8f%92%e4%bb%b6%e5%81%9a%e5%a4%9a%e8%af%ad%e8%a8%80" title="See more articles on this tag" class="but ml6 radius"># WordPress without plugin to do multi-language</a><a href="https://www.361sale.com/en/tag/wordpress%e5%a4%9a%e8%af%ad%e8%a8%80%e5%88%87%e6%8d%a2" title="See more articles on this tag" class="but ml6 radius"># WordPress Multi-Language Switching</a><a href="https://www.361sale.com/en/tag/wordpress%e5%a4%9a%e8%af%ad%e8%a8%80%e6%9c%80%e4%bd%b3%e5%ae%9e%e8%b7%b5" title="See more articles on this tag" class="but ml6 radius"># WordPress Multilingual Best Practices</a><a href="https://www.361sale.com/en/tag/wordpress%e5%a4%9a%e8%af%ad%e8%a8%80html" title="See more articles on this tag" class="but ml6 radius"># WordPress Multilingual HTML</a><a href="https://www.361sale.com/en/tag/wordpress%e5%a4%9a%e8%af%ad%e8%a8%80%e6%95%99%e7%a8%8b" title="See more articles on this tag" class="but ml6 radius"># WordPress Multilingual Tutorials</a></div> </div> <div class="text-center muted-3-color box-body em09">If you like it, support it.</div><div class="text-center post-actions"><a href="javascript:;" data-action="like" class="action action-like" data-pid="76362"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text>kudos</text><count>1302</count></a><span class="hover-show dropup action action-share"> <svg class="icon" aria-hidden="true"><use xlink:href="#icon-share"></use></svg><text>share (joys, benefits, privileges etc) with others</text><div class="zib-widget hover-show-con share-button dropdown-menu"><div><a rel="nofollow" class="share-btn qzone" target="_blank" title="Qzone" href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=https://www.361sale.com/en/76362&title=手把手教你:WordPress多语言切换神器,不用插件也能轻松搞定-光子波动网 | 专业WordPress修复服务,全球范围,快速响应&pics=https://www.361sale.com/wp-content/uploads/2025/09/20250910150820284-image.png&summary=想让WordPress网站支持多语言,却不想依赖插件?本指南带你用HTML+JS轻松实现多语言切换,掌控SEO与用户体验!"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-qzone-color"></use></svg></icon><text>Qzone<text></a><a rel="nofollow" class="share-btn weibo" target="_blank" title="microblog" href="https://service.weibo.com/share/share.php?url=https://www.361sale.com/en/76362&title=手把手教你:WordPress多语言切换神器,不用插件也能轻松搞定-光子波动网 | 专业WordPress修复服务,全球范围,快速响应&pic=https://www.361sale.com/wp-content/uploads/2025/09/20250910150820284-image.png&searchPic=false"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-weibo-color"></use></svg></icon><text>microblog<text></a><a rel="nofollow" class="share-btn qq" target="_blank" title="QQ friend" href="https://connect.qq.com/widget/shareqq/index.html?url=https://www.361sale.com/en/76362&title=手把手教你:WordPress多语言切换神器,不用插件也能轻松搞定-光子波动网 | 专业WordPress修复服务,全球范围,快速响应&pics=https://www.361sale.com/wp-content/uploads/2025/09/20250910150820284-image.png&desc=想让WordPress网站支持多语言,却不想依赖插件?本指南带你用HTML+JS轻松实现多语言切换,掌控SEO与用户体验!"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-qq-color"></use></svg></icon><text>QQ friend<text></a><a rel="nofollow" class="share-btn poster" poster-share="76362" title="Poster Sharing" href="javascript:;"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-poster-color"></use></svg></icon><text>Poster Sharing<text></a><a rel="nofollow" class="share-btn copy" data-clipboard-text="https://www.361sale.com/en/76362" data-clipboard-tag="链接" title="Copy link" href="javascript:;"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy-color"></use></svg></icon><text>Copy link<text></a></div></div></span><a href="javascript:;" class="action action-favorite signin-loader" data-pid="76362"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-favorite"></use></svg><text>favorite</text><count></count></a></div></article><div class="user-card zib-widget author"> <div class="card-content mt10 relative"> <div class="user-content"> <div class="user-avatar"><a href="https://www.361sale.com/en/author/1048"><span class="avatar-img avatar-lg"><img alt="wajigua's avatar - Photon Flux | Professional WordPress repair service, worldwide, fast response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" class="lazyload avatar avatar-id-1048"></span></a></div> <div class="user-info mt20 mb10"> <div class="user-name flex jc"><name class="flex1 flex ac"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/1048">sound of crying</a><img class="lazyload ml3 img-icon medal-icon" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/medal/medal-1.svg" data-toggle="tooltip" title="venturing from one's thatched hut for the first time" alt="Badge - First Time Out - Photon Fluctuation Network | Professional WordPress Repair Service, Worldwide, Fast Response"><img class="lazyload img-icon ml3" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/user-level-2.png" data-toggle="tooltip" title="LV2" alt="Rank-LV2-Photonflux.com | Professional WordPress Repair Service, Worldwide, Fast Response"><a href="javascript:;" class="focus-color ml10 follow flex0 signin-loader" data-pid="1048"><count><i class="fa fa-heart-o mr3" aria-hidden="true"></i>focus</count></a></name></div> <div class="author-tag mt10 mini-scrollbar"><a class="but c-blue-2 tag-forum-post" data-toggle="tooltip" title="Total 0 posts" href="https://www.361sale.com/en/author/1048?tab=forum"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-posts"></use></svg>0</a><a class="but c-blue tag-posts" data-toggle="tooltip" title="Total 265 articles" href="https://www.361sale.com/en/author/1048"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-post"></use></svg>265</a><a class="but c-green tag-comment" data-toggle="tooltip" title="Total 1 comment" href="https://www.361sale.com/en/author/1048?tab=comment"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-comment"></use></svg>1</a><span class="badg c-yellow tag-like" data-toggle="tooltip" title="Received 27.7W+ likes"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-like"></use></svg>27.7W+</span><span class="badg c-red tag-view" data-toggle="tooltip" title="Popularity 214W+"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-hot"></use></svg>214W+</span></div> <div class="user-desc mt10 muted-2-color em09">The guy was lazy and didn't write anything...</div> </div> </div> <div class="swiper-container more-posts swiper-scroll"><div class="swiper-wrapper"><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/79197"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/10/20251025143428672-img_v3_02rd_b9d6aba7-da79-4cdc-8e46-ad3c13adc45g.jpg" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="WordPress Gutenberg 21.9.0 Released: New Features, New Blocks & Full Performance Upgrade - Photon Fluctuation Network | Professional WordPress repair service, worldwide, fast response"><div class="abs-center left-bottom graphic-text text-ellipsis">WordPress Gutenberg 21.9.0 Released: New Features, New Blocks & Performance Overhaul</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">WordPress Gutenberg 21.9.0 Released: New Features, New Blocks & Performance Overhaul</div><div class="px12 opacity8 mt6"><item>October 25, 15:42</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 10.8W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/78155"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/10/20251009102516695-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="WordPress 6.8.3 Update: Important Security Fixes and Enhancements - Photon Volatility | Professional WordPress repair service, worldwide, quick response"><div class="abs-center left-bottom graphic-text text-ellipsis">WordPress 6.8.3 Update: Important Security Fixes and Enhancements</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">WordPress 6.8.3 Update: Important Security Fixes and Enhancements</div><div class="px12 opacity8 mt6"><item>October 9, 18:48</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 8.5W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/81230"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/11/20251122144653706-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="2025 The strongest combination appeared! WordPress 6.9 RC2 hand in hand with PHP 8.5, bringing a big jump in website performance - Photon Flux | Professional WordPress repair service, worldwide, fast response!"><div class="abs-center left-bottom graphic-text text-ellipsis">2025 The best combination emerges! WordPress 6.9 RC2 joins hands with PHP 8.5 to bring a big jump in website performance!</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">2025 The most powerful combination emerges! WordPress 6.9 RC2 joins hands with PHP 8.5 to bring website performance...</div><div class="px12 opacity8 mt6"><item>November 22, 20:04</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 8.3W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/80594"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/11/20251112141757425-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="WordPress 6.9 RC1 Released: New Features, Improvements and Countdown to Official Release - Photon Flux | Professional WordPress repair service, worldwide, fast response"><div class="abs-center left-bottom graphic-text text-ellipsis">WordPress 6.9 RC1 Released: New Features, Improvements and Countdown to Official Release</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">WordPress 6.9 RC1 Released: New Features, Improvements and Countdown to Official Release</div><div class="px12 opacity8 mt6"><item>November 12, 15:20</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 8W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/81896"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/12/20251203100504851-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="WordPress 6.9 "Gene" Release Breakdown: This Time, It's Not Just an Interface Update—It's a Change in How We Work - Photon Wave Network | Professional WordPress Repair Services, Worldwide, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">WordPress 6.9 "Gene" Release Breakdown: This Time, It's Not Just an Interface Update—It's a Change in How You Work</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">WordPress 6.9 "Gene" Release Breakdown: This Time, It's Not Just a Visual Update—It's About Workflow...</div><div class="px12 opacity8 mt6"><item>December 3, 11:30 AM</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 8W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/78176"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/10/20251009192058917-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="Gutenberg 21.8.0 Heavy Update: Editing Experience and Performance Fully Evolved - Photon Volatility | Professional WordPress Repair Service, Global Scope, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">Gutenberg 21.8.0 Major Update: Editing Experience and Performance Evolution</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Gutenberg 21.8.0 Major Update: Editing Experience and Performance Evolution</div><div class="px12 opacity8 mt6"><item>October 9, 19:30</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 7.8W+</item></div></div></div></a></div></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div></div> </div> </div> <div class="theme-box" style="height:99px"> <nav class="article-nav"> <div class="main-bg box-body radius8 main-shadow"> <a href="https://www.361sale.com/en/77063"> <p class="muted-2-color"><i class="fa fa-angle-left em12"></i><i class="fa fa-angle-left em12 mr6"></i>Previous article.</p> <div class="text-ellipsis-2"> Still worrying about the incomplete display of Elementor content, here comes the correct insertion method of Post Content Widget. </div> </a> </div> <div class="main-bg box-body radius8 main-shadow"> <a href="https://www.361sale.com/en/77095"> <p class="muted-2-color">next article<i class="fa fa-angle-right em12 ml6"></i><i class="fa fa-angle-right em12"></i></p> <div class="text-ellipsis-2"> Why is everyone using it? WordPress Hello Biz Getting Started Guide Revealed </div> </a> </div> </nav> </div> <div class="theme-box relates relates-thumb"> <div class="box-body notop"> <div class="title-theme">Recommended</div> </div><div class="zib-widget"><div class="swiper-container swiper-scroll"><div class="swiper-wrapper"><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/4913"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2023/06/image-300x119.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="Magento 2: Is it your team's next 'big production'? -Photonflux.com | Professional WordPress Repair Service, Worldwide, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">Magento 2: Is it your team's next 'big production'?</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Magento 2: Is it your team's next 'big production'?</div><div class="px12 opacity8 mt6"><item>June 8, 00:49</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 254W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/47595"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/03/20250326162806508-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="WordPress 6.8 RC1 released for testing, the official version will be online on April 15 - Photon Flux | Professional WordPress Repair Service, Worldwide, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">WordPress 6.8 RC1 Released for Testing, Official Version to Go Live on April 15</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">WordPress 6.8 RC1 Released for Testing, Official Version to Go Live on April 15</div><div class="px12 opacity8 mt6"><item>March 26, 17:45</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 46.3W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/53416"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/05/20250509145223516-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="Adding Different Types of Products in WooCommerce: A Complete Guide - Photonflux.com | Professional WordPress Repair Service, Global Reach, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">Adding Different Types of Products in WooCommerce: A Complete Guide</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Adding Different Types of Products in WooCommerce: A Complete Guide</div><div class="px12 opacity8 mt6"><item>May 11, 15:06</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 43.3W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/77243"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/09/20250922142030934-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="How to realize courses, resource downloads and exclusive content distribution through WP-Members - Photon Fluctuation Network | Professional WordPress repair service, global coverage, fast response"><div class="abs-center left-bottom graphic-text text-ellipsis">How to Download Courses, Resources and Distribute Exclusive Content with WP-Members</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">How to Download Courses, Resources and Distribute Exclusive Content with WP-Members</div><div class="px12 opacity8 mt6"><item>September 22, 14:37</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 26.4W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/771"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2024/09/20240929174038615-301_redirect_01.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="The Complete Guide to WordPress 301 Redirects: Best Practices for Fixing Dead Links and Enhancing the User Experience - Photon Flux | Professional WordPress Repair Service, Global Coverage, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">The Complete Guide to WordPress 301 Redirects: Best Practices for Fixing Dead Links and Improving User Experience</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">The Complete Guide to WordPress 301 Redirects: Best Practices for Fixing Dead Links and Improving User Experience</div><div class="px12 opacity8 mt6"><item>September 29, 17:49</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 19.9W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/12442"><div class="graphic hover-zoom-img mb10 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2024/07/2024070206452771.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="How to deal with WordPress website prompts "Error establishing a database connection" or "Error establishing a database connection" error - Photon Flux | Specialty WordPress repair service, worldwide, fast response!"><div class="abs-center left-bottom graphic-text text-ellipsis">How to deal with WordPress site prompts "Error establishing a database connection" or "Error establishing a database connection" error</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">How to deal with WordPress website prompts "Error establishing a database connect...</div><div class="px12 opacity8 mt6"><item>July 3, 13:47</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 13.9W+</item></div></div></div></a></div></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div></div></div></div><div class="theme-box" id="comments"> <div class="box-body notop"> <div class="title-theme">commentaries <small>sofa-buying</small></div> </div> <div class="no_webshot main-bg theme-box box-body radius8 main-shadow"> <div class="comment-signarea text-center box-body radius8"> <h3 class="text-muted em12 theme-box muted-3-color">Please log in to post a comment</h3> <p> <a href="javascript:;" class="signin-loader but c-blue padding-lg"><i class="fa fa-fw fa-sign-in mr10" aria-hidden="true"></i>log in</a> <a href="javascript:;" class="signup-loader ml10 but c-yellow padding-lg"><svg class="icon mr10" aria-hidden="true"><use xlink:href="#icon-signup"></use></svg>enrollment</a> </p> <p class="social-separator separator muted-3-color em09">Social Account Login</p><div class="social_loginbar"><a rel="nofollow" title="WeChat Login" href="https://www.361sale.com/en/oauth/weixingzh?rurl=https%3A%2F%2Fwww.361sale.com%2Fen%2F76362" class="social-login-item weixingzh toggle-radius qrcode-signin"><i class="fa fa-weixin" aria-hidden="true"></i></a><a rel="nofollow" title="GitHub Login" href="https://www.361sale.com/en/oauth/github?rurl=https%3A%2F%2Fwww.361sale.com%2Fen%2F76362" class="social-login-item github toggle-radius"><i class="fa fa-github" aria-hidden="true"></i></a></div> </div> <div id="postcomments"> <ol class="commentlist list-unstyled"> <div class="text-center comment-null" style="padding:40px 0;"><img style="width:280px;opacity: .7;" src="https://www.361sale.com/wp-content/themes/zibll/img/null.svg"><p style="margin-top:40px;" class="em09 muted-3-color separator">No comments</p></div><div class="pagenav hide"><div class="next-page ajax-next"><a href="#"></a></div></div> </ol> </div> </div> </div> </div> </div> <div class="sidebar"> <div class="mb20"><div class="user-card zib-widget widget"><div class="user-cover graphic" style="padding-bottom: 50%;"><img class="lazyload fit-cover user-cover user-cover-id-1048" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-lg.svg" data-src="https://www.361sale.com/wp-content/uploads/2025/02/20250214230305496-33.jpg" alt="User Cover"></div> <div class="card-content mt10 relative"> <div class="user-content"> <div class="user-avatar"><a href="https://www.361sale.com/en/author/1048"><span class="avatar-img avatar-lg"><img alt="wajigua's avatar - Photon Flux | Professional WordPress repair service, worldwide, fast response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" class="lazyload avatar avatar-id-1048"></span></a></div> <div class="user-info mt20 mb10"> <div class="user-name flex jc"><name class="flex1 flex ac"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/1048">sound of crying</a><img class="lazyload ml3 img-icon medal-icon" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/medal/medal-1.svg" data-toggle="tooltip" title="venturing from one's thatched hut for the first time" alt="Badge - First Time Out - Photon Fluctuation Network | Professional WordPress Repair Service, Worldwide, Fast Response"><img class="lazyload img-icon ml3" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/user-level-2.png" data-toggle="tooltip" title="LV2" alt="Rank-LV2-Photonflux.com | Professional WordPress Repair Service, Worldwide, Fast Response"><a href="javascript:;" class="focus-color ml10 follow flex0 signin-loader" data-pid="1048"><count><i class="fa fa-heart-o mr3" aria-hidden="true"></i>focus</count></a></name></div> <div class="author-tag mt10 mini-scrollbar"><a class="but c-blue-2 tag-forum-post" data-toggle="tooltip" title="Total 0 posts" href="https://www.361sale.com/en/author/1048?tab=forum"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-posts"></use></svg>0</a><a class="but c-blue tag-posts" data-toggle="tooltip" title="Total 265 articles" href="https://www.361sale.com/en/author/1048"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-post"></use></svg>265</a><a class="but c-green tag-comment" data-toggle="tooltip" title="Total 1 comment" href="https://www.361sale.com/en/author/1048?tab=comment"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-comment"></use></svg>1</a><span class="badg c-yellow tag-like" data-toggle="tooltip" title="Received 27.7W+ likes"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-like"></use></svg>27.7W+</span><span class="badg c-red tag-view" data-toggle="tooltip" title="Popularity 214W+"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-hot"></use></svg>214W+</span></div> <div class="user-desc mt10 muted-2-color em09">The guy was lazy and didn't write anything...</div> </div> </div> <div class="swiper-container more-posts swiper-scroll"><div class="swiper-wrapper"><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/87267"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2026/03/20260311095724520-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="Gutenberg 22.6.0 Update Interpretation: Icon Block Conversion, Media Handling Enhancements, Editor Continues to Mature - Photon Fluctuation Network | Professional WordPress Repair Service, Global Coverage, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">Gutenberg 22.6.0 Update Explained: Icon Block Conversion, Media Handling Enhancements, Editor Continues to Mature</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Gutenberg 22.6.0 Update Explained: Icon Block Conversion, Media Handling Enhancements, Editor Continues...</div><div class="px12 opacity8 mt6"><item>March 11, 10:35</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 9635</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/83281"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2025/12/20251218094924129-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="90% people use the wrong Loop Grid: Archive templates are not built this way - Photon Volatility Network | Professional WordPress repair services, global reach, fast response"><div class="abs-center left-bottom graphic-text text-ellipsis">The folks at 90% are using the wrong Loop Grid: that's not how Archive templates are built!</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">The folks at 90% are using the wrong Loop Grid: that's not how Archive templates are built!</div><div class="px12 opacity8 mt6"><item>March 10, 10:02</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 6518</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/87209"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2026/03/20260309102246610-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="MailPoet teaching: Gmail/Outlook display exception how to do? Typography and compatibility repair - Photon Fluctuation Network | Professional WordPress Repair Service, Worldwide, Fast Response"><div class="abs-center left-bottom graphic-text text-ellipsis">MailPoet Tutorial: What to do about Gmail/Outlook display anomalies? Typography and Compatibility Fixes</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">MailPoet Tutorial: What to do about Gmail/Outlook display anomalies? Typography and Compatibility Fixes</div><div class="px12 opacity8 mt6"><item>March 9, 10:55</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 8335</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/87162"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2026/03/20260305173106704-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="Don't mess up! MailPoet manage Woo order emails and marketing emails separately - Photon Fluctuation Network | Professional WordPress Repair Service, Global Coverage, Rapid Response"><div class="abs-center left-bottom graphic-text text-ellipsis">MailPoet manages Woo order emails and marketing emails separately!</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">MailPoet manages Woo order emails and marketing emails separately!</div><div class="px12 opacity8 mt6"><item>March 6, 09:33</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 8594</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/87124"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2026/03/20260305094349466-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="MailPoet Teaching: How to Create Your First Newsletter and Send Test Emails - Photon Flux Network | Professional WordPress repair service, worldwide, fast response"><div class="abs-center left-bottom graphic-text text-ellipsis">MailPoet Tutorial: How to Create Your First Newsletter and Send Test Emails</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">MailPoet Tutorial: How to Create Your First Newsletter and Send Test Emails</div><div class="px12 opacity8 mt6"><item>March 5, 10:46</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 8778</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://www.361sale.com/en/87083"><div class="graphic hover-zoom-img em09 style-3" style="padding-bottom: 70%!important;"><img class="fit-cover lazyload" data-src="https://www.361sale.com/wp-content/uploads/2026/03/20260304100130569-image.png" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" alt="WooPayments good to use? Comparison with Stripe plugin: stability, controllability, scalability - Photon Fluctuations | Professional WordPress repair service, worldwide, rapid response"><div class="abs-center left-bottom graphic-text text-ellipsis">Does WooPayments work well? Comparison with Stripe plugin: stability, controllability, scalability</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">Does WooPayments work well? Comparison with Stripe plugin: stability, controllability, scalability</div><div class="px12 opacity8 mt6"><item>March 4, 11:02</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 6558</item></div></div></div></a></div></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div></div> </div> </div></div><div></div><div class="posts-nav-box" data-title="文章目录"></div><div class="theme-box"><div class="box-body comment-mini-lists zib-widget"><div class="posts-mini"><a href="https://www.361sale.com/en/author/879"><span class="avatar-img"><img alt="I heard you called Bo's avatar - photonwave.com | Professional WordPress repair service, worldwide, rapid response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2025/05/20250527171844271-5月27日.gif" class="lazyload avatar avatar-id-879"><img class="lazyload avatar-badge" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://www.361sale.com/wp-content/uploads/2024/11/钻石会员.png" data-toggle="tooltip" title="Diamond Member" alt="Diamond Member"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/879">I heard your name is Bo.</a><img class="lazyload ml3 img-icon medal-icon" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/medal/medal-14.svg" data-toggle="tooltip" title="a favorite" alt="Badge - Well-liked - photonfluctuation.com | Professional WordPress Repair Service, Worldwide, Fast Response"></name><span class="flex0 icon-spot muted-3-color" title="2026-03-11 13:49:16">March 11, 13:49</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10541"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/87297.html#comment-10541">Now definitely still do SEO, just play changed. Previously rely on heaps of content, heaps of keywords can have traffic, and now pay more attention to the quality of content + brand trust + user experience. In addition to relying solely on SEO is actually more and more difficult, a lot of good basically SEO + social media + content marketing + private domain conversion to do together. SEO is still a long-term customer acquisition channel, but can no longer be taken as the only channel.</a></div></div><div class="posts-mini"><a href="https://www.361sale.com/en/author/1151"><span class="avatar-img"><img alt="Hehe at Work Avatar - Photon Wave Network | Professional WordPress Repair Services, Worldwide Coverage, Fast Response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" class="lazyload avatar avatar-id-1151"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/1151">Hehe is working.</a><img class="lazyload ml3 img-icon medal-icon" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/medal/medal-1.svg" data-toggle="tooltip" title="venturing from one's thatched hut for the first time" alt="Badge - First Time Out - Photon Fluctuation Network | Professional WordPress Repair Service, Worldwide, Fast Response"></name><span class="flex0 icon-spot muted-3-color" title="2026-03-11 10:54:34">March 11, 10:54</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10540"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/87268.html#comment-10540">Normal, included only on behalf of Google to see the page, does not mean that the ranking immediately, "has been included but not ranked" usually because: Keyword competition, page weight is low, the content is not strong enough, the page is relatively new. Continue to optimize the long-tail keywords, content quality and internal chain, usually takes a little time, the ranking will slowly come out!<img class="smilie-icon" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/smilies/wozuimei.gif" alt="Emoji[wozuimei]-Photonflux.com | Professional WordPress repair service, worldwide, rapid response"></a></div></div><div class="posts-mini"><a href="https://www.361sale.com/en/author/2104"><span class="avatar-img"><img alt="Amelia Foster's Avatar - Photon Flux Network | Professional WordPress Repair Service, Worldwide, Fast Response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2026/03/20260306161809577-images.jpg" class="lazyload avatar avatar-id-2104"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/2104">Amelia Foster</a></name><span class="flex0 icon-spot muted-3-color" title="2026-03-06 16:20:15">March 6, 16:20</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10538"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/87206.html#comment-10538">Do you have a screenshot?</a></div></div><div class="posts-mini"><a href="https://www.361sale.com/en/author/2102"><span class="avatar-img"><img alt="The son is not a fish also peacefully know the joy of fish avatar - Photon Fluctuation | Professional WordPress repair service, worldwide, rapid response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" class="lazyload avatar avatar-id-2102"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/2102">lit. even a son who is not a fish knows the joy of fish</a></name><span class="flex0 icon-spot muted-3-color" title="2026-03-06 09:23:14">March 6, 09:23</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10537"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/87173.html#comment-10537">Don't pile on the optimization plugins first, locate the bottlenecks first: Use Query Monitor to see slow SQL, slow hooks. Pause all plugins for comparison, then turn them on one by one. Check autoload is too big (options table). Check database indexes with large table queries. Tackle host/database performance first if server TTFB is high.</a></div></div><div class="posts-mini"><a href="https://www.361sale.com/en/author/1151"><span class="avatar-img"><img alt="Hehe at Work Avatar - Photon Wave Network | Professional WordPress Repair Services, Worldwide Coverage, Fast Response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" class="lazyload avatar avatar-id-1151"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/1151">Hehe is working.</a><img class="lazyload ml3 img-icon medal-icon" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/medal/medal-1.svg" data-toggle="tooltip" title="venturing from one's thatched hut for the first time" alt="Badge - First Time Out - Photon Fluctuation Network | Professional WordPress Repair Service, Worldwide, Fast Response"></name><span class="flex0 icon-spot muted-3-color" title="2026-03-03 16:47:55">March 3, 16:47</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10536"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/87078.html#comment-10536">Hi Windjammer, there's really no need to mess with complicated local environments, regular people follow these steps and the update basically won't crash the site 👇 First, backup the whole site, files + database are prepared, this is the bottom line, out of the problem can be a key to go back. Don't change the whole thing in one click, change it in batches, change the unimportant plug-ins first, and then change the core ones. Immediately after the update, clear the cache, go to the foreground to check the home page, article page, buttons, forms, these key positions. It is best to install a plug-in that supports version rollback, in case of a crash, cut back to the old version in a second. To summarize: backup first, change in batches, check after changing, leave a way back, stable ✅😎 Hope this helps!<img class="smilie-icon" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://www.361sale.com/wp-content/themes/zibll/img/smilies/baoquan.gif" alt="Emoticon[baoquan] - Photon Wave Network | Professional WordPress Repair Services, Worldwide Coverage, Rapid Response"></a></div></div><div class="posts-mini"><a href="https://www.361sale.com/en/author/2096"><span class="avatar-img"><img alt="bugbang's avatar - photonwave.com | Professional WordPress repair service, global coverage, rapid response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" class="lazyload avatar avatar-id-2096"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/2096">bugbang</a></name><span class="flex0 icon-spot muted-3-color" title="2026-03-02 09:55:56">March 2, 09:55</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10535"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/87020.html#comment-10535">Usually it's not that the payment didn't work, but that the callback (webhook) didn't write back the order status. Troubleshooting steps: WooCommerce → Status → Logs: see if the payment gateway has webhook error / signature error / timeout Check if the site is blocked by WAF (Cloudflare, Pagoda Firewall, security plugins) Check if "Cache checkout pages/interface paths" is enabled (checkout pages and callback interfaces should not be cached) Look at the server error logs for 500/fatal errors that interrupt the callback execution. Solution: Release wp-json, wc-api, payment gateway callback URLs (configure as per gateway documentation) Disable cache and JS merge compression test on checkout page once If using Cloudflare: set no-challenge, no-block rules for callback URLs</a></div></div><div class="posts-mini"><a href="https://www.361sale.com/en/author/1689"><span class="avatar-img"><img alt="Ulanara Zhenhuan's avatar - Photon Fluctuation | Professional WordPress repair service, worldwide, rapid response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" class="lazyload avatar avatar-id-1689"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/1689">Ulla Nala Zhenhuan (18嬛嬛嬛)</a></name><span class="flex0 icon-spot muted-3-color" title="2026-01-31 09:36:29">January 31st, 09:36</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10534"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/86533.html#comment-10534">1) Determine whether it is "Normal Waiting" or "Abnormally Stuck". You can first look at 3 signals: whether the page release time is within 7-14 days, whether there are only a small number of pages with this status, and whether the page has appeared in the XML Sitemap. If all three are satisfied, most likely belong to the normal crawling and evaluation stage, do not need to do it immediately. 2) Under what circumstances is it useless to "wait"? The following cases will not be solved automatically by time: the page has almost no internal links (isolated page), the content is highly similar to the existing pages on the site, canonical points to other URLs, and too many similar articles are published on the same topic for a short period of time. In this case, Google has been crawled, but judged that "it is not worth entering the index". 3) The most effective way of manual intervention (no tossing) Prioritize these 3 things: add internal links, link to the page from related old articles or columns, and enhance the density of information on the first screen. The first 2-3 paragraphs directly answer the user's question, avoid too much padding, confirm canonical as self-referential, avoid being judged as a duplicate page, and then go to GSC to request reindexing after doing so. 4) What "intervention actions" are counterproductive? It is not recommended: frequent deletion and reposting, clicking "request to index" several times in a row, forcing keywords to be stacked for indexing, changing URLs or titles arbitrarily. These operations will allow Google to reassess the stability of the page, but slow down the inclusion. 5) a practical judgment standard If an article: has been crawled, there is no noindex / robots problem, there are at least 1-2 related internal links, the content obviously solves an independent problem, then it is included, just a matter of time, not a plug-in problem.</a></div></div><div class="posts-mini"><a href="https://www.361sale.com/en/author/1683"><span class="avatar-img"><img alt="Post Mover's Avatar - Photon Fluctuation Network | Professional WordPress Repair Service, Worldwide, Fast Response" src="https://www.361sale.com/wp-content/uploads/2024/11/ac7896f8bae6d9071a9276bc0e6c72e.png" data-src="//www.361sale.com/wp-content/uploads/2026/01/20260127103042464-img_v3_02rt_56593b98-13e0-49cf-9678-62ab8798e59g.jpg" class="lazyload avatar avatar-id-1683"></span></a><div class="posts-mini-con em09 ml10 flex xx jsb"><p class="flex jsb"><span class="flex1 flex"><name class="inflex ac relative-h"><a class="display-name text-ellipsis" href="https://www.361sale.com/en/author/1683">Post Porter</a></name><span class="flex0 icon-spot muted-3-color" title="2026-01-30 10:00:08">January 30th 10:00</span></span><span class="ml10 flex0"><a href="javascript:;" data-action="comment_like" class="action action-comment-like pull-right muted-2-color" data-pid="10533"><svg class="icon mr3" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text></text><count>0</count></a></span></p><a class="muted-color text-ellipsis-5" href="https://www.361sale.com/en/forum-post/86493.html#comment-10533">The new station does not do external links can be completely, the first content and station structure to do a good job more stable. Only rely on the content can generally get included and part of the long-tail word rankings, but the amount of high competition will be slow. It is recommended to wait for the site stable inclusion, 30-50 quality content, keywords began to enter the top 20/30, and then a small amount of external links, priority brand words/naked chain/citation type, do not come up to chase the number. 👍</a></div></div></div></div></div></main> <div class="container fluid-widget"></div><footer class="footer"> <div class="container-fluid container-footer"> <ul class="list-inline"><li class="hidden-xs" style="max-width: 300px;"><p><a class="footer-logo" href="https://www.361sale.com/en" title="Photonflux.com | Professional WordPress Repair Service, Worldwide, Fast Response"> <img src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-sm.svg" data-src="https://www.361sale.com/wp-content/uploads/2024/11/2024082616093579.png" switch-src="https://www.361sale.com/wp-content/uploads/2024/11/2024082616093579.png" alt="Photonflux.com | Professional WordPress Repair Service, Worldwide, Fast Response" class="lazyload" style="height: 40px;"> </a></p><div class="footer-muted em09">Photonfluctuation.com is your trusted WordPress global repair center, providing fast and efficient troubleshooting and 4S store level service experience. It also provides a wealth of free resources and tutorials to help users improve their WordPress skills across the board.</div></li><li style="max-width: 550px;"><p class="fcode-links">Links:<a href="https://blog.weixiaoduo.com/">Vi Xiaoduo Blog</a> | <a href="https://abelohost.cn/">Abelohost</a> | <a href="https://www.iztwp.com/">Love Theme</a> | <a href="https://www.openbyt.com/">OpenByt</a> | <a href="https://www.wpcom.cn/">WPCOM Theme</a></p> <p><a href="https://www.361sale.com/en/privacy-policy">privacy policy</a> <a href="https://www.361sale.com/en/disclaimer/">- Disclaimer</a> <a href="https://www.361sale.com/en/copyright/">- copyright statement</a> <a href="https://www.361sale.com/en/about/">- About Us</a> <a href="https://www.361sale.com/en/careers/">- Join Us</a> <a href="https://www.361sale.com/en/contact/">- Contact Us</a> <a href="https://www.361sale.com/en/advertisement-cooperation/">- Advertising Cooperation</a> <a href="https://www.361sale.com/en/invoices/">- Requests for invoicing</a> <a href="https://www.361sale.com/en/service/">- Services</a> <a href="https://www.361sale.com/en/affiliate/">- promotion program</a> </p></p><div class="footer-muted em09">Copyright © 2021- 2025 - <a href="https://www.361sale.com/en/">Copyright © Guangzhou Photon Flux Technology Group Co.</a> -<a target="_blank" href="https://beian.miit.gov.cn/#/Integrated/index">Guangdong ICP No. 2023007541-1</a> - <a href="https://beian.mps.gov.cn/#/query/webSearch" target="_blank"> <img src="https://www.361sale.com/wp-content/uploads/2025/04/20250416103855478-微信图片_20250416103823.png" alt="Public Safety Filing Icon" style="vertical-align: middle; width: 16px; height: 16px;"/> Guangdong Public Security Bureau No. 44010602012728 </a></div><div class="footer-contact mt10"><a class="toggle-radius hover-show nowave" href="javascript:;"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-d-wechat"></use></svg><div class="hover-show-con footer-wechat-img"><img style="box-shadow: 0 5px 10px rgba(0,0,0,.2); border-radius:4px;" height="100" class="lazyload" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-sm.svg" data-src="https://www.361sale.com/wp-content/uploads/2024/11/20241126191408856-20241121100828475-1732154895969.webp" alt="Sweep plus wechat - photonfluctuation.com | Professional WordPress repair service, worldwide, rapid response"></div></a><a class="toggle-radius" data-toggle="tooltip" target="_blank" title="QQ contact" href="https://wpa.qq.com/msgrd?v=3&uin=1025174874&site=qq&menu=yes"><svg class="icon" aria-hidden="true" data-viewbox="-50 0 1100 1100" viewbox="-50 0 1100 1100"><use xlink:href="#icon-d-qq"></use></svg></a><a class="toggle-radius" data-toggle="tooltip" title="microblog" target="_blank" href="https://weibo.com/"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-d-weibo"></use></svg></a><a class="toggle-radius" data-toggle="tooltip" title="email" href="mailto:info@361sale.com"><svg class="icon" aria-hidden="true" data-viewbox="-20 80 1024 1024" viewbox="-20 80 1024 1024"><use xlink:href="#icon-d-email"></use></svg></a></div></li><li><div class="footer-miniimg" data-toggle="tooltip" title="Scan the code and add the microblogging"> <p> <img class="lazyload" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-sm.svg" data-src="https://www.361sale.com/wp-content/uploads/2024/11/20241126191408856-20241121100828475-1732154895969.webp" alt="Scanning plus microblogging - photonfluctuation.com | Professional WordPress repair service, worldwide, rapid response"> </p> <span class="opacity8 em09">Scan the code and add the microblogging</span> </div><div class="footer-miniimg" data-toggle="tooltip" title="Sweep the code to add QQ"> <p> <img class="lazyload" src="https://www.361sale.com/wp-content/themes/zibll/img/thumbnail-sm.svg" data-src="https://www.361sale.com/wp-content/uploads/2024/11/112.jpg" alt="Scanning plus QQ-photon fluctuation network | Professional WordPress repair service, global scope, fast response"> </p> <span class="opacity8 em09">Sweep the code to add QQ</span> </div></li></ul> </div> </footer> <template id="tp-language" data-tp-language="en_US"></template><script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/en\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/zibll\/*","\/en\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <style> .theme-pagination .ajax-next a, .theme-pagination .order-ajax-next a {border-radius: 30px;padding: 15px 0;color: var(--muted-color);background-color: var(--main-bg-color);color: #FF0033;display: block;opacity: 1;font-weight: bold;} </style> <link rel="stylesheet" href="https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//css/pugongying.css"> <div class="dandelion"><span class="smalldan"></span><span class="bigdan"></span></div> <div id="cc-myssl-id" style="position: fixed;right: 0;bottom: 0;width: 65px;height: 65px;z-index: 99;"> <a href="https://myssl.com/361sale.com?from=mysslid" target="_blank"><img src="https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets/img/footer/myssl-id.png" alt="" style="width:100%;height:100%"></a> </div> <style> .navbar-nav>li:first-child:before {width: 30px;}.navbar-nav>li:before {width: 60px;top: 23px;background: rgba(0, 0, 0, 0);height: 4px;left: 10px;border-radius: unset;}.navbar-top li.current-menu-item>a, .navbar-top li:hover>a {color: var(--focus-color);} </style> <style> .wp-posts-content>h1.wp-block-zibllblock-biaoti, .wp-posts-content>h2.wp-block-zibllblock-biaoti, .wp-posts-content>h3.wp-block-zibllblock-biaoti, .wp-posts-content>h4.wp-block-zibllblock-biaoti{ background: initial; /* background-color: rgba(114, 114, 114, 0.1); */ } .wp-posts-content>h1.wp-block-heading, .wp-posts-content h1{ line-height: 32px; padding: 0px 20px 0px 32px; border-bottom: 4px solid rgba(114, 114, 114, 0.1); background: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets/img/post/h1.svg) 0px center no-repeat; } .wp-posts-content>h2.wp-block-heading, .wp-posts-content h2{ line-height: 33px; padding: 0px 20px 0px 28px; border-bottom: 4px solid rgba(114, 114, 114, 0.1); background: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets/img/post/h2.svg) 0px center no-repeat; background-size: 25px 25px; } .wp-posts-content>h3.wp-block-heading, .wp-posts-content h3{ padding: 0px 0px 0px 30px !important; background: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets/img/post/h3.svg) 0px center no-repeat; background-size: 25px 25px; } .wp-posts-content>h4.wp-block-heading, .wp-posts-content h4{ padding: 0px 0px 0px 25px !important; background: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets/img/post/h4.svg) 0px center no-repeat; background-size: 20px 20px; } /* 清除下划线 */ /* .title-theme:before {display: none;} */ .wp-posts-content>h1.wp-block-heading:before{display:none;} .wp-posts-content>h2.wp-block-heading:before{display:none;} .wp-posts-content>h3.wp-block-heading:before{display:none;} .wp-posts-content>h4.wp-block-heading:before{display:none;} </style> <style>.article{border-radius:var(--main-radius);box-shadow: 1px 1px 3px 3px rgba(53, 231, 8, 0.35);-moz-box-shadow: 1px 1px 3px 3px rgba(53, 231, 8, 0.35);}.article:hover{box-shadow: 1px 1px 5px 5px rgba(53, 231, 8, 0.35); -moz-box-shadow: 1px 1px 5px 5px rgba(53, 231, 8, 0.35);} </style> <style> .enlighter::before {content: "";display: block;background: #fc625d;top: 9px;left: 15px;border-radius: 50%;width: 15px;height: 15px;box-shadow: 20px 0 #fdbc40, 40px 0 #35cd4b;margin: 0px 2px -7px;z-index: 1;position: absolute;}.enlighter-overflow-scroll.enlighter-v-standard .enlighter {padding: 35px 0 12px 0;} </style> <style> .comment-mini-lists>div.posts-mini { border: 1px dashed #999999; border-radius: 10px; margin-top: 10px; } </style> <style> textarea#comment {background-color:transparent;background:linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),url("https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets/img/comments/comment_bg.gif") right 30px bottom 0px no-repeat;-moz-transition:ease-in-out 0.45s;background-size:35%;-webkit-transition:ease-in-out 0.45s;-o-transition:ease-in-out 0.45s;-ms-transition:ease-in-out 0.45s;transition:ease-in-out 0.45s;}textarea#comment:focus {background-position-y:789px;-moz-transition:ease-in-out 0.45s;-webkit-transition:ease-in-out 0.45s;-o-transition:ease-in-out 0.45s;-ms-transition:ease-in-out 0.45s;transition:ease-in-out 0.45s;}';</style> <style> body {--acg-color: #fff8fa;--acg-color2: #f8fdff;}.dark-theme {--acg-color: #323335;--acg-color2: #323335;}#postcomments .commentlist .comment {border-top: 1px solid rgb(50 50 50 / 0%);border-radius: 15px;margin: 0 15px 15px;border: 1px solid;display: flow-root;background-image: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//img/comments/shading_blue.png);border-color: #71baff80;background-color: var(--acg-color2);}#postcomments .commentlist .comment+.comment {border-top: 1px solid rgb(50 50 50 / 0%);padding: 0 0 15px 0;border-radius: 15px;margin: 0 15px 15px;border: 1px solid;display: flow-root;padding: 10px;}#postcomments .commentlist .comment+.comment:nth-child(odd) {background-image: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//img/comments/shading_red.png);border-color: #ff8bb5;background-color: var(--acg-color);}#postcomments .commentlist .comment+.comment:nth-child(even) {background-image: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//img/comments/shading_blue.png);border-color: #71baff80;background-color: var(--acg-color2);}#postcomments .children {background: rgb(116 116 116 / 0%);margin-bottom: 6px;border-radius: 15px;display: flow-root;}#postcomments .children:nth-child(even) {background-image: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//img/comments/shading_blue.png);border-color: #71baff80;}#postcomments .children:nth-child(odd) {background-image: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//img/comments/shading_red.png);border-color: #ff8bb5;background-color: var(--acg-color);} </style> <style> body {cursor: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//img/mouse/mouse1_1.png), default;} a:hover {cursor: url(https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//img/mouse/mouse1_2.png), pointer;} </style> <style> .avatar-img {border-radius: 50%;animation: light 4s ease-in-out infinite;transition: 0.5s;}.avatar-img:hover {transform: scale(1.15) rotate(720deg);}@keyframes light {0% {box-shadow: 0 0 4px #f00;}25% {box-shadow: 0 0 16px #0f0;}50% {box-shadow: 0 0 4px #00f;}75% {box-shadow: 0 0 16px #0f0;}100% {box-shadow: 0 0 4px #f00;}} </style> <style> .display-name {background-image: -webkit-linear-gradient(90deg, #07c160, #fb6bea 25%, #3aedff 50%, #fb6bea 75%, #28d079);-webkit-text-fill-color: transparent;-webkit-background-clip: text;background-size: 100% 600%;animation: wzw 10s linear infinite;}@keyframes wzw {0% {background-position: 0 0;}100% {background-position: 0 -300%;}} </style> <style> .user-avatar .avatar-img, .img-ip:hover, .w-a-info img {-webkit-animation: swing 3s .4s ease both;-moz-animation: swing 3s .4s ease both;}@-webkit-keyframes swing {20%, 40%, 60%, 80%, 100% {-webkit-transform-origin: top center }20% {-webkit-transform: rotate(15deg) }40% {-webkit-transform: rotate(-10deg) }60% {-webkit-transform: rotate(5deg) }80% {-webkit-transform: rotate(-5deg) }100% {-webkit-transform: rotate(0deg) }}@-moz-keyframes swing {20%, 40%, 60%, 80%, 100% {-moz-transform-origin: top center }20% {-moz-transform: rotate(15deg) }40% {-moz-transform: rotate(-10deg) }60% {-moz-transform: rotate(5deg) }80% {-moz-transform: rotate(-5deg) }100% {-moz-transform: rotate(0deg) }} </style> <style> .navbar-brand {position: relative;overflow: hidden;margin: 0 0 0 0;}.navbar-brand:before {content: "";position: absolute;left: -665px;top: -460px;width: 200px;height: 15px;background-color: rgba(255, 255, 255, .5);-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-o-transform: rotate(-45deg);transform: rotate(-45deg);-webkit-animation: searchLights 6s ease-in 0s infinite;-o-animation: searchLights 6s ease-in 0s infinite;animation: searchLights 6s ease-in 0s infinite;}@-moz-keyframes searchLights {50% {left: -100px;top: 0;}65% {left: 120px;top: 100px;}}@keyframes searchLights {40% {left: -100px;top: 0;}60% {left: 120px;top: 100px;}80% {left: -100px;top: 0;}} </style> <script> document.body.oncopy = function(){Swal.fire({allowOutsideClick:false,type:'success',title: '复制成功,如转载请注明出处!',showConfirmButton: false,timer: 2000});}; </script> <!--<script src="https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//js/copy-four.js"></script>--> <script src="https://www.361sale.com/wp-content/plugins/wml-zib-diy/assets//js/sweetalert2.js"></script> <!-- 引入VUE --> <script src="https://unpkg.com/vue@2.6.14/dist/vue.min.js"></script> <!-- 引入样式 --> <script src="https://unpkg.com/element-ui@2.15.6/lib/index.js"></script> <!-- 引入组件库 --> <link rel="stylesheet" href="https://unpkg.com/element-ui@2.15.6/packages/theme-chalk/lib/index.css"> <script> /*Prohibit F12 Ctrl+U Ctrl+S Ctrl+Shift+I*/ document.onkeydown = function () { /*Prohibit F12*/ if (window.event && window.event.keyCode == 123) { event.keyCode = 0; event.returnValue = false; new Vue({ data:function(){ this.$notify({ title:"呃!别瞎按", message:"你按这个想干嘛!再按就找不到我咯", position: 'bottom-right', offset: 50, showClose: false, type:"error" }); return{visible:false} } }) return false; } /*Prohibit Ctrl+U*/ if (event.ctrlKey && window.event.keyCode == 85) { new Vue({ data: function() { this.$notify({ title: "嘿!Brother", message: "老弟,源码得换方式获取哦~", position: 'bottom-right', offset: 50, showClose: true, type: "error" }); return { visible: false } } }) return false; } /*Prohibit Ctrl+S*/ if (event.ctrlKey && window.event.keyCode == 83) { new Vue({ data: function() { this.$notify({ title: "哎!你瞧瞧你", message: "网页得换方法保存哦~", position: 'bottom-right', offset: 50, showClose: true, type: "error" }); return { visible: false } } }) return false; } /*Prohibit Ctrl+Shift+I*/ if ((event.ctrlKey) && (event.shiftKey) && (event.keyCode == 73)) { event.keyCode = 0; event.returnValue = false; new Vue({ data:function(){ this.$notify({ title:"呐!这个也不行", message:"还是按点别的吧!", position: 'bottom-right', offset: 50, showClose: false, type:"error" }); return{visible:false} } }) return false; } }; /*Copy Remind*/ /*document.addEventListener("copy", function(e) { new Vue({ data: function() { if((window.getSelection ? window.getSelection() : document.selection.createRange().text) != ''){ this.$notify({ title: "叮!复制成功", message: "若要转载请务必保留原文链接!谢谢~", position: 'bottom-right', offset: 50, showClose: true, type: "success" }); }else{ this.$notify({ title: "咦?复制失败", message: "啊噢...你没还没选择内容呢!", position: 'bottom-right', offset: 50, showClose: true, type: "error" }); } return { visible: false } } }) })*/ </script> <script> document.ondragstart = function() { return false }; </script> <script> setInterval(function() { check() }, 4000); var check = function() { function doCheck(a) { if (("" + a / a)["length"] !== 1 || a % 20 === 0) { (function() {} ["constructor"]("debugger")()) } else { (function() {} ["constructor"]("debugger")()) } doCheck(++a) } try { doCheck(0) } catch (err) {} }; check(); </script> <div class="trp_model_container" id="trp_ald_modal_container" style="display: none" data-no-dynamic-translation data-no-translation> <div class="trp_ald_modal" id="trp_ald_modal_popup"> <div id="trp_ald_popup_text"> We've detected you might be speaking a different language. Do you want to change to: </div> <div class="trp_ald_select_and_button"> <div class="trp_ald_ls_container"> <div class="trp-language-switcher trp-language-switcher-container" id="trp_ald_popup_select_container" data-no-translation> <div class="trp-ls-shortcode-current-language" id="zh_CN" special-selector="trp_ald_popup_current_language" data-trp-ald-selected-language= "zh_CN"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png" width="18" height="12" alt="zh_CN" title="简体中文"> 简体中文 </div> <div class="trp-ls-shortcode-language"> <div class="trp-ald-popup-select" id="zh_CN" data-trp-ald-selected-language = "zh_CN"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png" width="18" height="12" alt="zh_CN" title="简体中文"> 简体中文 </div> <div class="trp-ald-popup-select" id="en_US" data-trp-ald-selected-language = "en_US"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English"> English </div> <div class="trp-ald-popup-select" id="ja" data-trp-ald-selected-language = "ja"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/ja.png" width="18" height="12" alt="ja" title="日本語"> 日本語 </div> <div class="trp-ald-popup-select" id="fr_FR" data-trp-ald-selected-language = "fr_FR"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/fr_FR.png" width="18" height="12" alt="fr_FR" title="Français"> Français </div> <div class="trp-ald-popup-select" id="es_ES" data-trp-ald-selected-language = "es_ES"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/es_ES.png" width="18" height="12" alt="es_ES" title="Español"> Español </div> </div> </div> </div> <div class="trp_ald_button"> <a href="https://www.361sale.com" id="trp_ald_popup_change_language"> Change Language </a> </div> </div> <a id="trp_ald_x_button_and_textarea" href="#"> <span id="trp_ald_x_button" title="Close and do not switch language"></span> <span id="trp_ald_x_button_textarea" title="Close and do not switch language"> Close and do not switch language </span> </a> </div> </div> <template id="trp_ald_no_text_popup_template"> <div id="trp_no_text_popup_wrap"> <div id="trp_no_text_popup" class="trp_ald_no_text_popup" data-no-dynamic-translation data-no-translation> <div id="trp_ald_not_text_popup_ls_and_button"> <div id="trp_ald_no_text_popup_div"> <span id="trp_ald_no_text_popup_text"> We've detected you might be speaking a different language. Do you want to change to: </span> </div> <div class="trp_ald_ls_container"> <div class="trp-language-switcher trp-language-switcher-container" id="trp_ald_no_text_select" data-no-translation> <div class="trp-ls-shortcode-current-language" id="zh_CN" special-selector="trp_ald_popup_current_language" data-trp-ald-selected-language="zh_CN"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png" width="18" height="12" alt="zh_CN" title="简体中文"> 简体中文 </div> <div class="trp-ls-shortcode-language" id="trp_ald_no_text_popup_select_container"> <div class="trp-ald-popup-select" id="zh_CN" data-trp-ald-selected-language= "zh_CN"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/zh_CN.png" width="18" height="12" alt="zh_CN" title="简体中文"> 简体中文 </div> <div class="trp-ald-popup-select" id="en_US" data-trp-ald-selected-language="en_US"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/en_US.png" width="18" height="12" alt="en_US" title="English"> English </div> <div class="trp-ald-popup-select" id="ja" data-trp-ald-selected-language="ja"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/ja.png" width="18" height="12" alt="ja" title="日本語"> 日本語 </div> <div class="trp-ald-popup-select" id="fr_FR" data-trp-ald-selected-language="fr_FR"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/fr_FR.png" width="18" height="12" alt="fr_FR" title="Français"> Français </div> <div class="trp-ald-popup-select" id="es_ES" data-trp-ald-selected-language="es_ES"> <img class="trp-flag-image" src="https://www.361sale.com/wp-content/plugins/translatepress-multilingual/assets/images/flags/es_ES.png" width="18" height="12" alt="es_ES" title="Español"> Español </div> </div> </div> </div> <div class="trp_ald_change_language_div"> <a href="https://www.361sale.com" id="trp_ald_no_text_popup_change_language"> Change Language </a> </div> </div> <div id="trp_ald_no_text_popup_x"> <button id="trp_close"></button> </div> </div> </div> </template> <script type="text/javascript"> window._win = { views: '76362', www: 'https://www.361sale.com/en', uri: 'https://www.361sale.com/wp-content/themes/zibll', ver: '8.5', imgbox: '1', imgbox_type: 'group', imgbox_thumbs: '1', imgbox_zoom: '1', imgbox_full: '1', imgbox_play: '1', imgbox_down: '1', sign_type: 'modal', signin_url: 'https://www.361sale.com/en/user-sign?tab=signin&redirect_to=https%3A%2F%2Fwww.361sale.com%2Fen%2F76362', signup_url: 'https://www.361sale.com/en/user-sign?tab=signup&redirect_to=https%3A%2F%2Fwww.361sale.com%2Fen%2F76362', ajax_url: 'https://www.361sale.com/wp-admin/admin-ajax.php', ajaxpager: '', ajax_trigger: '<i class="fa fa-angle-right"></i>加载更多', ajax_nomore: '没有更多内容了', qj_loading: '', highlight_kg: '1', highlight_hh: '', highlight_btn: '1', highlight_zt: 'dracula', highlight_white_zt: 'enlighter', highlight_dark_zt: 'dracula', upload_img_size: '10', img_upload_multiple: '6', upload_video_size: '30', upload_file_size: '30', upload_ext: 'jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|pdf|class|tar|zip|gz|gzip|rar|7z|psd|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages', user_upload_nonce: '889bb37a09', is_split_upload: '1', split_minimum_size: '20', comment_upload_img: '1' } </script> <div class="float-right round position-bottom scroll-down-hide"></div><div mini-touch="nav_search" touch-direction="top" class="main-search fixed-body main-bg box-body navbar-search nopw-sm"><div class="container"><div class="mb20"><button class="close" data-toggle-class data-target=".navbar-search" ><svg class="ic-close" aria-hidden="true"><use xlink:href="#icon-close"></use></svg></button></div><div remote-box="https://www.361sale.com/wp-admin/admin-ajax.php?action=search_box" load-click><div class="search-input"><p><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i></p><p class="placeholder k2"></p> <p class="placeholder t1"></p><p><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i></p><p class="placeholder k1"></p><p class="placeholder t1"></p><p></p> <p class="placeholder k1" style="height: 80px;"></p> </div></div></div></div> <div class="modal fade" id="u_sign" tabindex="-1" role="dialog"> <div class="modal-dialog" role="document"> <div class="sign-content"> <div class="sign zib-widget blur-bg relative"> <button class="close" data-dismiss="modal"> <svg class="ic-close" aria-hidden="true" data-viewbox="0 0 1024 1024" viewbox="0 0 1024 1024"><use xlink:href="#icon-close"></use></svg> </button> <div class="tab-content"><div class="tab-pane fade active in" id="tab-sign-in"><div class="box-body"><div class="title-h-left fa-2x">log in</div><a class="muted-color px12" href="#tab-sign-up" data-toggle="tab">Don't have an account? Register Now<i class="em12 ml3 fa fa-angle-right"></i></a></div><div id="sign-in"><form action=""><div class="relative line-form mb10"><input type="text" name="username" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">Username or Email</div></div><div class="relative line-form mb10"><input type="password" name="password" class="line-form-input" tabindex="2" placeholder=""><div class="scale-placeholder">login password</div><div class="abs-right passw muted-2-color"><i class="fa-fw fa fa-eye"></i></div><i class="line-form-line"></i></div><input machine-verification="slider" type="hidden" name="captcha_mode" value="slider" slider-id=""><div class="relative line-form mb10 em09"><span class="muted-color form-checkbox"><input type="checkbox" id="remember" checked="checked" tabindex="4" name="remember" value="forever"><label for="remember" class="ml3">Remember to log in</label></span><span class="pull-right muted-2-color"><a rel="nofollow" class="muted-2-color" href="https://www.361sale.com/en/user-sign?tab=resetpassword&redirect_to=https%3A%2F%2Fwww.361sale.com%2Fen%2F76362">Retrieve password</a></span></div><div class="box-body"><input type="hidden" name="action" value="user_signin"><button type="button" class="but radius jb-blue padding-lg signsubmit-loader btn-block"><i class="fa fa-sign-in mr10"></i>log in</button></div><input type="hidden" name="trp-form-language" value="en"/></form><p class="social-separator separator muted-3-color em09">Social Account Login</p><div class="social_loginbar"><a rel="nofollow" title="WeChat Login" href="https://www.361sale.com/en/oauth/weixingzh?rurl=https%3A%2F%2Fwww.361sale.com%2Fen%2F76362" class="social-login-item weixingzh toggle-radius qrcode-signin"><i class="fa fa-weixin" aria-hidden="true"></i></a><a rel="nofollow" title="GitHub Login" href="https://www.361sale.com/en/oauth/github?rurl=https%3A%2F%2Fwww.361sale.com%2Fen%2F76362" class="social-login-item github toggle-radius"><i class="fa fa-github" aria-hidden="true"></i></a></div><div class="muted-color mt10 text-center px12 opacity8">By logging in with your social account, you agree<a class="focus-color" target="_blank" href="https://www.361sale.com/en/terms">user agreement</a>,<a class="focus-color" target="_blank" href="https://www.361sale.com/en/privacy-policy">Privacy Statement</a></div></div></div><div class="tab-pane fade" id="tab-sign-up"><div class="box-body"><div class="title-h-left fa-2x">enrollment</div><a class="muted-color px12" href="#tab-sign-in" data-toggle="tab">Already have an account, log in now<i class="em12 ml3 fa fa-angle-right"></i></a></div><form id="sign-up" action=""><div class="relative line-form mb10"><input type="text" name="name" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">Setting the user name</div></div><div class="relative line-form mb10"><input change-show=".change-show" type="text" name="email" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">inbox</div></div><input machine-verification="slider" type="hidden" name="captcha_mode" value="slider" slider-id=""><div class="relative line-form mb10 change-show"><input type="text" name="captch" class="line-form-input" autocomplete="off" tabindex="2" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">CAPTCHA, a type of challenge-response test (computing)</div><span class="yztx abs-right"><button type="button" form-action="signup_captcha" class="but c-blue captchsubmit">CAPTCHA</button></span><div class="abs-right match-ok muted-color"><i class="fa-fw fa fa-check-circle"></i></div><input type="hidden" name="captcha_type" value="email"><input type="hidden" id="_wpnonce" name="_wpnonce" value="fc2d930497" /></div><div class="relative line-form mb10"><input type="password" name="password2" class="line-form-input" tabindex="3" placeholder=""><div class="scale-placeholder">Setting a password</div><div class="abs-right passw muted-2-color"><i class="fa-fw fa fa-eye"></i></div><i class="line-form-line"></i></div><div class="box-body"><input type="hidden" name="action" value="user_signup"><button type="button" class="but radius jb-green padding-lg signsubmit-loader btn-block"><svg class="icon mr10" aria-hidden="true" data-viewbox="0 0 1024 1024" viewbox="0 0 1024 1024"><use xlink:href="#icon-signup"></use></svg>enrollment</button><div class="form-checkbox muted-color mt10 text-center px12 opacity8"><input name="user_agreement" id="user_agreement" type="checkbox"><label for="user_agreement" class="px12 ml6" style="font-weight:normal;">Have read and agree to<a class="focus-color" target="_blank" href="https://www.361sale.com/en/terms">user agreement</a>,<a class="focus-color" target="_blank" href="https://www.361sale.com/en/privacy-policy">Privacy Statement</a></label></div></div><input type="hidden" name="trp-form-language" value="en"/></form></div><div class="tab-pane fade" id="tab-qrcode-signin"><div class="box-body"><div class="title-h-left fa-2x">Swipe to log in</div><span class="muted-3-color px12">utilization<a class="muted-color" href="#tab-sign-in" data-toggle="tab">Other ways to log in</a>maybe<a class="muted-color" href="#tab-sign-up" data-toggle="tab">enrollment</a></span><a class="muted-color px12 hide" href="#tab-qrcode-signin" data-toggle="tab">Swipe to log in</a></div><div class="qrcode-signin-container box-body text-center"><p class="placeholder" style="height:180px;width:180px;margin:auto;"></p><p class="placeholder" style="height:27px;width:200px;margin:15px auto 0;"></p></div><div class="muted-color mt10 text-center px12 opacity8">By scanning the code and logging in, you agree<a class="focus-color" target="_blank" href="https://www.361sale.com/en/terms">user agreement</a>,<a class="focus-color" target="_blank" href="https://www.361sale.com/en/privacy-policy">Privacy Statement</a></div></div></div> </div> </div> </div> </div> <style> /* ===== 公共基础 ===== */ .side-fixed-ad { position: fixed; z-index: 9999; } /* ===== 桌面端 ===== */ @media (min-width: 1200px) { .side-fixed-ad { top: 50%; transform: translateY(-50%); } #side-ad-left { left: calc(50% - 600px - 140px); } #side-ad-right { right: calc(50% - 600px - 140px); } .side-fixed-ad img { width: 120px; } } /* ===== 平板 ===== */ @media (min-width: 768px) and (max-width: 1199px) { .side-fixed-ad { top: 50%; transform: translateY(-50%); } #side-ad-left { left: 8px; } #side-ad-right { right: 8px; } .side-fixed-ad img { width: 90px; } } /* ===== 手机端:底部悬浮横幅 ===== */ @media (max-width: 767px) { #side-ad-left, #side-ad-right { bottom: 12px; top: auto; transform: none; } #side-ad-left { left: 12px; } #side-ad-right { right: 12px; } .side-fixed-ad img { width: 140px; } } </style> <!-- 左侧广告 --> <div id="side-ad-left" class="side-fixed-ad"> <a href="https://www.geekexpress.com.cn/" target="_blank" rel="nofollow noopener"> <img src="/wp-content/uploads/2025/12/20251225104643178-20251225-104419.png" alt="Ad Left"> </a> </div> <!-- 右侧广告 --> <div id="side-ad-right" class="side-fixed-ad"> <a href="https://www.geekexpress.com.cn/" target="_blank" rel="nofollow noopener"> <img src="/wp-content/uploads/2025/12/20251225104643178-20251225-104419.png" alt="Ad Right"> </a> </div> <script type='text/javascript'> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <link rel='stylesheet' id='wc-blocks-style-css' href='https://www.361sale.com/wp-content/plugins/woocommerce/assets/client/blocks/wc-blocks.css' type='text/css' media='all' /> <style id='core-block-supports-inline-css' type='text/css'> .wp-container-core-group-is-layout-ad2f72ca{flex-wrap:nowrap;} </style> <script type="text/javascript" src="https://www.361sale.com/wp-content/themes/zibll/js/libs/bootstrap.min.js" id="bootstrap-js"></script> <script type="text/javascript" src="https://www.361sale.com/wp-content/themes/zibll/js/loader.js" id="_loader-js"></script> <script type="text/javascript" src="https://www.361sale.com/wp-content/themes/zibll/inc/functions/bbs/assets/js/main.min.js" id="forums-js"></script> <script type="text/javascript" src="https://www.361sale.com/wp-content/themes/zibll/inc/functions/shop/assets/js/main.min.js" id="shop-js"></script> <script type="text/javascript" src="https://www.361sale.com/wp-content/plugins/woocommerce/assets/js/sourcebuster/sourcebuster.min.js" id="sourcebuster-js-js"></script> <script type="text/javascript" id="wc-order-attribution-js-extra"> /* <![CDATA[ */ var wc_order_attribution = {"params":{"lifetime":1.0e-5,"session":30,"base64":false,"ajaxurl":"https:\/\/www.361sale.com\/wp-admin\/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}}; /* ]]> */ </script> <script type="text/javascript" src="https://www.361sale.com/wp-content/plugins/woocommerce/assets/js/frontend/order-attribution.min.js" id="wc-order-attribution-js"></script> <!--FOOTER_CODE_START--> <div class="gotop"> <div class="gotop-box"> <div class="gotop-item activity"> <a href="/en/user/rebate/"> <img src="/images/zbfox-follow-activity-1.png" alt="activity" class="a1"> <img src="/images/zbfox-follow-activity-2.png" alt="activity" class="a2"> <a href="https://www.361sale.com/en/affiliate/" target="_blank"> <div class="popover" style="background: url(https://www.361sale.com/wp-content/uploads/2024/11/113.png) no-repeat center/cover;"></div> </a> </div> <div class="gotop-item gotop-vip"> <a class="vip-buy vip-btn pay-vip" vip-level="2" data-toggle="tooltip" data-placement="top" href="javascript:;" data-original-title="开通会员"> <img src="/images/zbfox-follow-vip.svg" alt="member"> <p class="text">member</p> </a> </div> <div class="gotop-item"> <a href="javascript:;" class="toggle-theme toggle-radius"> <i class="fa fa-toggle-theme">The </i> </a> </div> <div class="gotop-item gotop-service"> <img src="/images/zbfox-kefu.svg" alt="first aid"> <p class="text">first aid</p> <div class="gotop-service-box"> <div class="tops"> <p>online time<br>9:00 - 18:00</p> <div class="gotop-wx-box"> <div class="boxs"> <p>Contact Customer Service</p> <img src="https://www.361sale.com/wp-content/uploads/2024/11/20241121100828475-1732154895969.png" alt="Swipe to contact customer service"> </div> <div class="btms"> <em>telephone call</em> <span>020-2206-9892</span> </div> </div> <div class="btms"> <em>QQ contact</em> <span>1025174874</span> </div> </div> <div class="btms"> <em>Customer service mailbox</em> <span>info@361sale.com</span> </div> </div> </div> <div class="gotop-item gotops hide-on-scroll" id="gotops" style="display: none;"> <a href="javascript:(scrollTo());"> <img src="/images/zbfox-follow-gotop.png" alt="TOP"> <p>TOP</p> </a> </div> </div> </div> <script> // 当页面加载完成后执行 jQuery(document).ready(function($) { // 获取返回顶部按钮 var $gotop = $('.gotop-item.gotops'); // 监听滚动事件 $(window).scroll(function() { // 如果滚动超过了200px,显示返回顶部按钮,否则隐藏 if ($(this).scrollTop() > 200) { $gotop.fadeIn(); } else { $gotop.fadeOut(); } }); // 返回顶部按钮点击事件 $gotop.click(function() { $('html, body').animate({ scrollTop: 0 }, 800); return false; }); }); </script> <!--FOOTER_CODE_END--> <!--FOOTER_CODE_START--> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?39457c9bea3f48e1051313e1d3039b16"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!--FOOTER_CODE_END--> <!--baidu_push_js--> <script type="text/javascript"> (function() { var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> <!--baidu_push_js--> <script type="text/javascript"> console.log("数据库查询:376次 | 页面生成耗时:859.748ms"); </script> </body> </html>