<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>外贸网站建设 归档 - 外贸网站建设-Mac163</title>
	<atom:link href="https://mac163.com/tag/wmwzjs/feed/" rel="self" type="application/rss+xml" />
	<link>https://mac163.com/tag/wmwzjs/</link>
	<description></description>
	<lastBuildDate>Tue, 03 Feb 2026 12:03:52 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://mac163.com/wp-content/uploads/2020/08/Mac163.png</url>
	<title>外贸网站建设 归档 - 外贸网站建设-Mac163</title>
	<link>https://mac163.com/tag/wmwzjs/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>WP Fastest Cache在Nginx中手动添加静态规则</title>
		<link>https://mac163.com/5393/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Tue, 03 Feb 2026 12:03:52 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[建站知识]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5393</guid>

					<description><![CDATA[安装了WP Fastest Cache缓存插件，如果配置不当，可能插件就失效，而在Nginx安装WP Fast&#8230;]]></description>
										<content:encoded><![CDATA[<p>安装了WP Fastest Cache缓存插件，如果配置不当，可能插件就失效，而在Nginx安装WP Fastest Cache缓存插件后，你还需要这样在conf配置文件里添加几条静态规则，否则，插件无效。</p>
<p>如何添加？</p>
<p>首先打开Nginx配置文件（可以下载文件到本地编辑，也可以直接在linux里用vi或vim编辑器编辑），位置在Nginx安装目录里如：/usr/local/nginx/conf/nginx.conf。</p>
<p>然后把下面这段代码添加到Server{}里面：</p>
<pre># WP Fastest Cache缓存在Nginx静态规则 begin
location / {
if (-f $request_filename) {
break;
}
set $caches 1;
set $request_file $document_uri;
set $cache_file ''; 
if ($request_method = POST) {
set $caches 0;
}
if ($query_string) {
set $caches 0;
}
if ($caches = 0) {
set $request_file '';
}
if ($request_file ~ ^(.+)$) {
set $cache_file /wp-content/cache/all/$1/index.html;
}
if (-f $document_root$cache_file) {
rewrite ^ $cache_file last;
}
if (!-e $request_filename) {
rewrite . /index.php last;
}
} 
rewrite /wp-admin$ $scheme://$host$uri/ permanent;
# WP Fastest Cache缓存在Nginx静态规则 end</pre>
<p>提示信息</p>
<p>添加后重启Nginx。</p>
<p>上面代码中：</p>
<pre>set $cache_file /wp-content/cache/all/$1/index.html;</pre>
<p>是设置缓存路径，我们可以更改这个路径。同样，我们可以进入这个目录看看WP Fastest Cache生成的缓存页。</p>
<p>这样设置后，我们在访问网页时就是访问缓存的页面了。</p>
<p>需要注意的是，WP Fastest Cache缓存页面并非在启动时就立即把所有页面都生成缓存页，可能需要过几分钟才生成。我们可以这样来验证访问的网页是否WP Fastest Cache缓存页：</p>
<p>右键点击打开的网页，再点“查看网页源代码”，滚动条拉到最下面，如果看到下面的语句，则表明访问的是缓存页了：</p>
<pre>&lt;!-- WP Fastest Cache file was created in xxxxx seconds, on 日期 时间 --&gt;</pre>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>WordPress如何删除所有用户(只保留管理员)以及清空评论</title>
		<link>https://mac163.com/5379/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Wed, 12 Mar 2025 13:04:46 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[建站知识]]></category>
		<category><![CDATA[WP主题教程]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5379</guid>

					<description><![CDATA[一、wordpress如何删除所有用户，只保留管理员 据说可以用插件。但我还是感觉sql命令更直接。 提醒：数&#8230;]]></description>
										<content:encoded><![CDATA[<h2>一、wordpress如何删除所有用户，只保留管理员</h2>
<p>据说可以用插件。但我还是感觉sql命令更直接。</p>
<p>提醒：数据库任何操作之前，都要确保好已经做了备份！</p>
<p>1：删除没有文章的用户</p>
<pre>DELETE FROM wp_users WHERE ID NOT IN (SELECT post_author FROM wp_posts);</pre>
<p>2：删除不存在用户的元数据</p>
<pre>DELETE FROM wp_usermeta WHERE user_id NOT IN (SELECT ID FROM wp_users);</pre>
<h3>二、wordpress如何清空评论：</h3>
<p>sql命令如下：</p>
<pre>delete from wp_comments where comment_approved = '参数'</pre>
<p>wp_comments是WP默认的评论表，请根据自己的实际，修改前面的 wp_ 为你的数据库表前缀。<br />
“参数”有3个选项：</p>
<p>spam: 垃圾评论<br />
0: 未审核评论<br />
1: 已审核评论</p>
<p>如果要删除待审核评论，参数那里就修改为 0 即可。</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>如何在WordPress中禁用Google字体第二篇</title>
		<link>https://mac163.com/5359/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Sat, 16 Nov 2024 17:25:04 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题]]></category>
		<category><![CDATA[WordPress主题相关]]></category>
		<category><![CDATA[WP主题教程]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5359</guid>

					<description><![CDATA[在本教程中，我们将概述如何在 WordPress 模板中禁用 Google 字体。 Google Fonts是&#8230;]]></description>
										<content:encoded><![CDATA[<p>在本教程中，我们将概述如何在 WordPress 模板中禁用 Google 字体。</p>
<p><a href="https://fonts.google.com/" target="_blank" rel="noopener nofollow"><strong>Google Fonts</strong></a>是网络上领先的开源字体托管商，拥有数百种字体系列可供包含在网页中或下载。</p>
<h2>在 WordPress 中禁用 Google 字体：选项 1</h2>
<p>基于：<a title="WooStroid 测试" href="https://wp-tf.template-help.com/test/woo22/" target="_blank" rel="nofollow noopener sponsored">WooStroid 测试。</a></p>
<p>首先，我们需要找到可以从 Google 中提取的字体。如果我们不知道字体名称，那么我们就通过我们的网站寻找。</p>
<p>在 Chrome 中按热键<strong>F12</strong>，在打开的<strong>DevTools</strong>中，找到<strong>Network</strong>选项卡。在 filter 区域添加<strong>CSS</strong>并刷新页面。在<strong>Domain</strong>一栏中，我们可以看到来自 fonts.googleapis.com 的内容。</p>
<p>您还可以浏览页面以查看标题和文本。</p>
<figure id="attachment_5360" aria-describedby="caption-attachment-5360" style="width: 1024px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/933df5.png"><img fetchpriority="high" decoding="async" class="size-full wp-image-5360" src="https://mac163.com/wp-content/uploads/2024/11/933df5.png" alt="如何在wordpress中禁用google字体第二篇" width="1024" height="548" srcset="https://mac163.com/wp-content/uploads/2024/11/933df5.png 1024w, https://mac163.com/wp-content/uploads/2024/11/933df5-300x161.png 300w, https://mac163.com/wp-content/uploads/2024/11/933df5-768x411.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption id="caption-attachment-5360" class="wp-caption-text">如何在wordpress中禁用google字体第二篇</figcaption></figure>
<p>我们看到<strong>Roboto Condensed、Bebas Neue</strong>和<strong>Questrial</strong>被使用。</p>
<p>1. 前往<a href="https://fonts.google.com/" target="_blank" rel="noopener nofollow">https://fonts.google.com/</a>并搜索<strong>Roboto Condensed</strong>（对所有其他字体也执行相同操作）。下载。</p>
<figure id="attachment_5361" aria-describedby="caption-attachment-5361" style="width: 1024px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/933df58.png"><img decoding="async" class="size-full wp-image-5361" src="https://mac163.com/wp-content/uploads/2024/11/933df58.png" alt="如何在wordpress中禁用google字体第二篇" width="1024" height="82" srcset="https://mac163.com/wp-content/uploads/2024/11/933df58.png 1024w, https://mac163.com/wp-content/uploads/2024/11/933df58-300x24.png 300w, https://mac163.com/wp-content/uploads/2024/11/933df58-768x62.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption id="caption-attachment-5361" class="wp-caption-text">如何在wordpress中禁用google字体第二篇</figcaption></figure>
<p>2.然后需要将下载的字体转换为<strong>WOFF</strong>格式<a href="https://cloudconvert.com/ttf-to-woff" target="_blank" rel="nofollow noopener sponsored">https://cloudconvert.com/ttf-to-woff</a>。</p>
<p>3. 在安装的根目录中创建一个<strong>字体文件</strong>夹。</p>
<figure id="attachment_5362" aria-describedby="caption-attachment-5362" style="width: 1024px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/933df48.png"><img decoding="async" class="size-full wp-image-5362" src="https://mac163.com/wp-content/uploads/2024/11/933df48.png" alt="如何在wordpress中禁用google字体第二篇" width="1024" height="520" srcset="https://mac163.com/wp-content/uploads/2024/11/933df48.png 1024w, https://mac163.com/wp-content/uploads/2024/11/933df48-300x152.png 300w, https://mac163.com/wp-content/uploads/2024/11/933df48-768x390.png 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption id="caption-attachment-5362" class="wp-caption-text">如何在wordpress中禁用google字体第二篇</figcaption></figure>
<p>4. 将包含我们（转换后的）字体的文件夹添加到其中。例如<strong>Roboto_Condensed。</strong></p>
<figure id="attachment_5363" aria-describedby="caption-attachment-5363" style="width: 1024px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/e6c2849.png"><img loading="lazy" decoding="async" class="size-full wp-image-5363" src="https://mac163.com/wp-content/uploads/2024/11/e6c2849.png" alt="如何在wordpress中禁用google字体" width="1024" height="305" srcset="https://mac163.com/wp-content/uploads/2024/11/e6c2849.png 1024w, https://mac163.com/wp-content/uploads/2024/11/e6c2849-300x89.png 300w, https://mac163.com/wp-content/uploads/2024/11/e6c2849-768x229.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a><figcaption id="caption-attachment-5363" class="wp-caption-text">如何在wordpress中禁用google字体</figcaption></figure>
<p>5. 接下来，我们创建字体的 CSS。</p>
<p>您需要小心并为所有字体选项设置正确的路径。Google 上的字体页面会为您提供帮助。</p>
<figure id="attachment_5364" aria-describedby="caption-attachment-5364" style="width: 891px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/e6c2849-1.png"><img loading="lazy" decoding="async" class="size-full wp-image-5364" src="https://mac163.com/wp-content/uploads/2024/11/e6c2849-1.png" alt="如何在wordpress中禁用google字体" width="891" height="602" srcset="https://mac163.com/wp-content/uploads/2024/11/e6c2849-1.png 891w, https://mac163.com/wp-content/uploads/2024/11/e6c2849-1-300x203.png 300w, https://mac163.com/wp-content/uploads/2024/11/e6c2849-1-768x519.png 768w" sizes="auto, (max-width: 891px) 100vw, 891px" /></a><figcaption id="caption-attachment-5364" class="wp-caption-text">如何在wordpress中禁用google字体</figcaption></figure>
<figure id="attachment_5365" aria-describedby="caption-attachment-5365" style="width: 1024px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/e6c2831.png"><img loading="lazy" decoding="async" class="size-full wp-image-5365" src="https://mac163.com/wp-content/uploads/2024/11/e6c2831.png" alt="如何在wordpress中禁用google字体" width="1024" height="673" srcset="https://mac163.com/wp-content/uploads/2024/11/e6c2831.png 1024w, https://mac163.com/wp-content/uploads/2024/11/e6c2831-300x197.png 300w, https://mac163.com/wp-content/uploads/2024/11/e6c2831-768x505.png 768w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a><figcaption id="caption-attachment-5365" class="wp-caption-text">如何在wordpress中禁用google字体</figcaption></figure>
<p>6. 将准备好的<strong>CSS</strong>放入<strong>自定义 -&gt; 附加 CSS</strong>。</p>
<figure id="attachment_5367" aria-describedby="caption-attachment-5367" style="width: 196px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/cbc4195.png"><img loading="lazy" decoding="async" class="size-full wp-image-5367" src="https://mac163.com/wp-content/uploads/2024/11/cbc4195.png" alt="在wordpress中禁用google字体" width="196" height="831" srcset="https://mac163.com/wp-content/uploads/2024/11/cbc4195.png 196w, https://mac163.com/wp-content/uploads/2024/11/cbc4195-71x300.png 71w" sizes="auto, (max-width: 196px) 100vw, 196px" /></a><figcaption id="caption-attachment-5367" class="wp-caption-text">在wordpress中禁用google字体</figcaption></figure>
<p>7.并将此代码添加到<strong>functions.php</strong>文件中。</p>
<pre><code>/**
* Remove loading gfonts
*/
add_filter( 'style_loader_src', function( $href ) {
if( strpos( $href , "//fonts.googleapis.com/" ) === false ) {
return $href;
}
return false;
});
// Remove dns-prefetch for fonts.googleapis
add_filter( 'wp_resource_hints', function( $urls ) {
foreach ($urls as $key =&gt; $url) {
if ( 'fonts.googleapis.com' === $url ) {
unset( $urls[ $key ] );
}
}
return $urls;
} );
</code></pre>
<h2>如何在WordPress选项生成器中禁用Google字体</h2>
<p>同样，我们寻找需要本地化的字体，然后转到<a href="https://google-webfonts-helper.herokuapp.com/fonts" target="_blank" rel="noopener nofollow">google-webfonts-helper</a>。</p>
<p><a href="https://google-webfonts-helper.herokuapp.com/fonts/roboto-condensed?subsets=latin" target="_blank" rel="noopener nofollow">正在寻找Roboto Condensed</a>字体。</p>
<figure id="attachment_5368" aria-describedby="caption-attachment-5368" style="width: 925px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/b747790.png"><img loading="lazy" decoding="async" class="size-full wp-image-5368" src="https://mac163.com/wp-content/uploads/2024/11/b747790.png" alt="如何在wordpress选项生成器中禁用google字体" width="925" height="771" srcset="https://mac163.com/wp-content/uploads/2024/11/b747790.png 925w, https://mac163.com/wp-content/uploads/2024/11/b747790-300x250.png 300w, https://mac163.com/wp-content/uploads/2024/11/b747790-768x640.png 768w" sizes="auto, (max-width: 925px) 100vw, 925px" /></a><figcaption id="caption-attachment-5368" class="wp-caption-text">如何在wordpress选项生成器中禁用google字体</figcaption></figure>
<p>1. 选择所需的字体选项。</p>
<p>2.写入需要的路径。</p>
<p>3. 在<strong>自定义 -&gt; 附加 CSS</strong>部分添加生成的 CSS。</p>
<p>4. 下载档案并将字体解压到适当的文件夹中。</p>
<p>5.将代码添加到<strong>functions.php</strong>文件中。</p>
<pre><code>/**
* Remove loading gfonts
*/
add_filter( 'style_loader_src', function( $href ) {
if( strpos( $href , "//fonts.googleapis.com/" ) === false ) {
return $href;
}
return false;
});
// Remove dns-prefetch for fonts.googleapis
add_filter( 'wp_resource_hints', function( $urls ) {
foreach ($urls as $key =&gt; $url) {
if ( 'fonts.googleapis.com' === $url ) {
unset( $urls[ $key ] );
}
}
return $urls;
} );
</code></pre>
<p><strong>在DevTools</strong><strong>中</strong>完成所有操作后，域中应该不再有<strong>fonts.googleapis.com</strong>，并且网站本身也不应该有折叠字体。</p>
<figure id="attachment_5369" aria-describedby="caption-attachment-5369" style="width: 888px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2024/11/b74772.png"><img loading="lazy" decoding="async" class="size-full wp-image-5369" src="https://mac163.com/wp-content/uploads/2024/11/b74772.png" alt="如何在wordpress选项生成器中禁用google字体" width="888" height="693" srcset="https://mac163.com/wp-content/uploads/2024/11/b74772.png 888w, https://mac163.com/wp-content/uploads/2024/11/b74772-300x234.png 300w, https://mac163.com/wp-content/uploads/2024/11/b74772-768x599.png 768w" sizes="auto, (max-width: 888px) 100vw, 888px" /></a><figcaption id="caption-attachment-5369" class="wp-caption-text">如何在wordpress选项生成器中禁用google字体</figcaption></figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>如何续订您的支持许可证</title>
		<link>https://mac163.com/5324/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Fri, 21 Oct 2022 04:11:23 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<category><![CDATA[高端网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5324</guid>

					<description><![CDATA[默认情况下，ThemeForest 产品包括 6 个月的免费支持。如果在这 6 个月内您购买了主题的任何其他许&#8230;]]></description>
										<content:encoded><![CDATA[<p>默认情况下，ThemeForest 产品包括 6 个月的免费支持。如果在这 6 个月内您购买了主题的任何其他许可证以在其他客户端站点上使用，您的支持许可证将自动免费续订。但是，如果您仅将主题用于单个网站，那么在 6 个月后（如果您没有将支持延长至 12 个月），您将需要更新您的支持许可证。</p>
<p>要更新您的支持许可证，只需访问<a href="https://themeforest.net/item/total-responsive-multipurpose-wordpress-theme/6339019?ref=WPExplorer" target="_blank" rel="noopener nofollow">此处的产品页面</a>。在屏幕右侧，您将看到一个大按钮，用于更新您的支持许可证，如下所示：</p>
<figure id="attachment_5325" aria-describedby="caption-attachment-5325" style="width: 1299px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2022/10/support-license.png"><img loading="lazy" decoding="async" class="size-full wp-image-5325" src="https://mac163.com/wp-content/uploads/2022/10/support-license.png" alt="Support License" width="1299" height="749" srcset="https://mac163.com/wp-content/uploads/2022/10/support-license.png 1299w, https://mac163.com/wp-content/uploads/2022/10/support-license-300x173.png 300w, https://mac163.com/wp-content/uploads/2022/10/support-license-1024x590.png 1024w, https://mac163.com/wp-content/uploads/2022/10/support-license-768x443.png 768w" sizes="auto, (max-width: 1299px) 100vw, 1299px" /></a><figcaption id="caption-attachment-5325" class="wp-caption-text">Support License</figcaption></figure>
<p>只需单击按钮并完成结帐流程即可续订您的支持许可证。如果您有任何问题，请通过项目评论部分告诉我们。</p>
<p><strong>重要（省钱）</strong>：如果您打算将主题用于另一个网站，最好购买主题的新许可证，因为您将免费获得支持，因为每次购买主题的新许可证时，您的支持都是自动续订 6 个月（无论您拥有多少主题许可证，您一次只需要 1 个有效的支持许可证，因此您可以购买 100 个 Total 许可证，只需拥有 1 个有效的支持许可证即可获得全部 100 个支持使用主题的网站）。此外，当您购买新许可证时，您还可以选择以较少的费用将支持延长至 12 个月，当然，这仅在您计划至少一年内不购买另一个许可证时才需要。</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>从1.6.0之前的版本更新Total</title>
		<link>https://mac163.com/5322/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Fri, 21 Oct 2022 03:41:32 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题相关]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5322</guid>

					<description><![CDATA[更新 WordPress：最重要的是确保 WordPress 是最新的 备份：首先备份您的网站。您应该始终对您&#8230;]]></description>
										<content:encoded><![CDATA[<ul>
<li><strong>更新 WordPress</strong>：最重要的是确保 WordPress 是最新的</li>
<li><strong>备份</strong>：首先备份您的网站。您应该始终对您的站点进行备份，但如果您没有保留备份，请务必立即进行备份。</li>
<li><strong>停用插件</strong>：接下来，在更新主题之前停用所有插件以防止任何冲突。</li>
<li><strong>更新主题</strong>：接下来，更新主题——http: <a href="http://wpexplorer-themes.com/total/docs/update-theme/" rel="nofollow">//wpexplorer-themes.com/total/docs-category/updates/</a></li>
<li>主题不再使用旧的主题面板方法，如果您希望迁移设置，则所有内容都已移至<a href="http://wpexplorer-themes.com/total/docs/customizing-theme-design/" rel="nofollow">定制</a>器，如果您更愿意进入并重新添加设置（有时更容易），则需要执行下一步然后跳过下一步。</li>
<li><strong>迁移您的选项：</strong>仅当您在主题面板中进行了大量调整或者您不想进入 WordPress 定制器以在迁移后重新设置站点时才推荐使用（尽管那将是最好的）。所以继续下载并激活 Total Redux-Customizer 迁移插件 &#8211; <a href="http://wpexplorer-themes.com/total/extensions/" rel="nofollow">http://wpexplorer-themes.com/total/extensions/</a>  &#8211; 然后刷新站点以确保迁移设置。如果第一次没有工作，请再次刷新（您必须登录刷新现场站点）。迁移后删除插件。<strong>重要提示</strong>：这只能导入一些选项，而不是全部。</li>
<li><strong>更新插件</strong>：现在转到外观 &gt; 安装插件并更新任何需要更新的插件 &#8211;  <a href="http://wpexplorer-themes.com/total/docs/update-plugins/" rel="nofollow">http://wpexplorer-themes.com/total/docs/update-plugins/</a></li>
<li><strong>激活插件</strong>：现在重新激活您的插件。</li>
<li><strong>完成</strong>：一切都应该更新和迁移。如果您有任何问题，请告诉我们！</li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>如何找到我当前的Total主题版本</title>
		<link>https://mac163.com/5317/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Fri, 21 Oct 2022 03:11:22 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题相关]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5317</guid>

					<description><![CDATA[让您的主题保持最新的错误和安全修复以及接收新功能非常重要。您可以随时访问更新日志以查看可供购买/下载的最新版本&#8230;]]></description>
										<content:encoded><![CDATA[<p>让您的主题保持最新的错误和安全修复以及接收新功能非常重要。您可以随时访问<a href="http://wpexplorer-themes.com/total/changelog/" rel="nofollow">更新日志</a>以查看可供购买/下载的最新版本主题。但您也可以只设置<a href="http://wpexplorer-themes.com/total/docs/update-theme/" rel="nofollow">自动更新</a>，以便收到有关主题新版本的通知。</p>
<p>要了解您当前的版本是什么，您必须选择：</p>
<h3>选项 1：检查主题面板</h3>
<p>您可以在主主题面板中轻松查看您的主题版本。</p>
<figure id="attachment_5318" aria-describedby="caption-attachment-5318" style="width: 1265px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2022/10/total-theme-version.png"><img loading="lazy" decoding="async" class="size-full wp-image-5318" src="https://mac163.com/wp-content/uploads/2022/10/total-theme-version.png" alt="Total Theme Version" width="1265" height="1019" srcset="https://mac163.com/wp-content/uploads/2022/10/total-theme-version.png 1265w, https://mac163.com/wp-content/uploads/2022/10/total-theme-version-300x242.png 300w, https://mac163.com/wp-content/uploads/2022/10/total-theme-version-1024x825.png 1024w, https://mac163.com/wp-content/uploads/2022/10/total-theme-version-768x619.png 768w" sizes="auto, (max-width: 1265px) 100vw, 1265px" /></a><figcaption id="caption-attachment-5318" class="wp-caption-text">Total Theme Version</figcaption></figure>
<h3>选项 2：在外观 &gt; 主题下检查</h3>
<p>转到外观 &gt; 主题找到总主题，然后单击它以查看版本号。</p>
<figure id="attachment_5319" aria-describedby="caption-attachment-5319" style="width: 1066px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2022/10/themes.png"><img loading="lazy" decoding="async" class="size-full wp-image-5319" src="https://mac163.com/wp-content/uploads/2022/10/themes.png" alt="Themes" width="1066" height="800" srcset="https://mac163.com/wp-content/uploads/2022/10/themes.png 1066w, https://mac163.com/wp-content/uploads/2022/10/themes-300x225.png 300w, https://mac163.com/wp-content/uploads/2022/10/themes-1024x768.png 1024w, https://mac163.com/wp-content/uploads/2022/10/themes-768x576.png 768w" sizes="auto, (max-width: 1066px) 100vw, 1066px" /></a><figcaption id="caption-attachment-5319" class="wp-caption-text">Themes</figcaption></figure>
<figure id="attachment_5320" aria-describedby="caption-attachment-5320" style="width: 1353px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2022/10/current-version.png"><img loading="lazy" decoding="async" class="size-full wp-image-5320" src="https://mac163.com/wp-content/uploads/2022/10/current-version.png" alt="Current Version" width="1353" height="1245" srcset="https://mac163.com/wp-content/uploads/2022/10/current-version.png 1353w, https://mac163.com/wp-content/uploads/2022/10/current-version-300x276.png 300w, https://mac163.com/wp-content/uploads/2022/10/current-version-1024x942.png 1024w, https://mac163.com/wp-content/uploads/2022/10/current-version-768x707.png 768w" sizes="auto, (max-width: 1353px) 100vw, 1353px" /></a><figcaption id="caption-attachment-5320" class="wp-caption-text">Current Version</figcaption></figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>修复Visual Composer中的“URI 格式错误”错误</title>
		<link>https://mac163.com/5251/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Sat, 08 Oct 2022 04:56:14 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题相关]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5251</guid>

					<description><![CDATA[如果您在尝试使用前端编辑器时在浏览器控制台中收到“URI 格式错误”错误，则很可能是站点上使用的数据库字符集存&#8230;]]></description>
										<content:encoded><![CDATA[<p><span>如果您在尝试使用前端编辑器时在浏览器控制台中收到“URI 格式错误”错误，则很可能是站点上使用的数据库字符集存在问题。如果您遇到此错误，您可能还会在前端看到奇怪的字符。</span></p>
<p><span>要修复，您可以联系您的虚拟主机，他们应该为您修复它，或者您可以尝试编辑 wp-config.php 文件并确保 DB_CHARSET 定义正确。</span></p>
<figure id="attachment_5252" aria-describedby="caption-attachment-5252" style="width: 920px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2022/10/db-charset.png"><img loading="lazy" decoding="async" class="size-full wp-image-5252" src="https://mac163.com/wp-content/uploads/2022/10/db-charset.png" alt="Db Charset" width="920" height="135" srcset="https://mac163.com/wp-content/uploads/2022/10/db-charset.png 920w, https://mac163.com/wp-content/uploads/2022/10/db-charset-300x44.png 300w, https://mac163.com/wp-content/uploads/2022/10/db-charset-768x113.png 768w" sizes="auto, (max-width: 920px) 100vw, 920px" /></a><figcaption id="caption-attachment-5252" class="wp-caption-text">Db Charset</figcaption></figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>灯箱图像未居中且太大</title>
		<link>https://mac163.com/5248/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Sat, 08 Oct 2022 04:26:07 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题相关]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5248</guid>

					<description><![CDATA[如果您的灯箱图像看起来不太正确，很可能是因为它们非常大并且比浏览器的视口更大。只需转到主题面板 &#62; 图像&#8230;]]></description>
										<content:encoded><![CDATA[<p>如果您的灯箱图像看起来不太正确，很可能是因为它们非常大并且比浏览器的视口更大。只需转到<strong>主题面板 &gt; 图像大小</strong>并为您的灯箱图像设置自定义宽度。我建议宽度在 1000-1500 之间，并将高度设置为 9999 以保持比例。请参见下面的示例：</p>
<figure id="attachment_5249" aria-describedby="caption-attachment-5249" style="width: 1563px" class="wp-caption aligncenter"><a href="https://mac163.com/wp-content/uploads/2022/10/total-lightbpx-image-size.png"><img loading="lazy" decoding="async" class="size-full wp-image-5249" src="https://mac163.com/wp-content/uploads/2022/10/total-lightbpx-image-size.png" alt="Total Lightbpx Image Size" width="1563" height="627" srcset="https://mac163.com/wp-content/uploads/2022/10/total-lightbpx-image-size.png 1563w, https://mac163.com/wp-content/uploads/2022/10/total-lightbpx-image-size-300x120.png 300w, https://mac163.com/wp-content/uploads/2022/10/total-lightbpx-image-size-1024x411.png 1024w, https://mac163.com/wp-content/uploads/2022/10/total-lightbpx-image-size-768x308.png 768w, https://mac163.com/wp-content/uploads/2022/10/total-lightbpx-image-size-1536x616.png 1536w" sizes="auto, (max-width: 1563px) 100vw, 1563px" /></a><figcaption id="caption-attachment-5249" class="wp-caption-text">Total Lightbpx Image Size</figcaption></figure>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>getimagesize PHP警告疑难解答</title>
		<link>https://mac163.com/5239/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Sat, 08 Oct 2022 02:51:16 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题相关]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5239</guid>

					<description><![CDATA[如果您收到与以下类似的错误，请按照以下步骤帮助解决问题： 示例错误 getimagesize（'PATH HE&#8230;]]></description>
										<content:encoded><![CDATA[<p>如果您收到与以下类似的错误，请按照以下步骤帮助解决问题：</p>
<h2>示例错误</h2>
<pre>getimagesize（'PATH HERE'）：无法打开流：.../themes/Total/framework/classes/image-resize.php 中没有这样的文件或目录</pre>
<h2>故障排除步骤</h2>
<p>在提交支持请求之前，请测试以下内容以尝试修复此错误：</p>
<ol>
<li><strong>正确的权限</strong>：确保在您的 WordPress 上传文件夹上正确设置了权限。如果您不确定如何向您的虚拟主机请求帮助。</li>
<li><strong>ImageMagick Enabled</strong>：确保在服务器上启用了 ImageMagick PHP 扩展。</li>
<li><strong>HTTPS 站点 URL 检查</strong>：使用 https 时，请确保您的站点 URL 在设置 &gt; 常规中正确，并且它使用的是 https 而不仅仅是 http。</li>
<li><strong>检查上传 URL</strong>：如果您使用插件来自定义上传 URL，请确保它是正确的（在 WP 3.5 之前，这些设置已内置到管理仪表板中）</li>
<li><strong>WPML Sunrise</strong>：如果您在多个域中使用 WPML，请确保启用“SUNRISE” &#8211; 请参阅<a href="https://wpml.org/documentation/support/multisite-support/languages-in-domains-for-wordpress-multisite-mode/" target="_blank" rel="noopener nofollow">此处的指南</a>。</li>
<li><strong>禁用主题图像大小调整脚本</strong>：您始终可以转到<strong>主题面板 &gt; 图像大小</strong>并尝试禁用主题内置的自动调整大小脚本。这不一定会“解决”问题，但如果您无法修复服务器权限或 https 设置，那么您始终可以使用默认的 WP 裁剪功能。</li>
</ol>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Skudo主题中的常见问题</title>
		<link>https://mac163.com/5214/</link>
		
		<dc:creator><![CDATA[mac163]]></dc:creator>
		<pubDate>Wed, 05 Oct 2022 01:00:02 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress主题相关]]></category>
		<category><![CDATA[外贸网站建设]]></category>
		<guid isPermaLink="false">https://mac163.com/?p=5214</guid>

					<description><![CDATA[问：我正在使用一键式功能安装演示，但由于某种原因它没有安装演示！ 答：根据您的服务器设置，此功能可能无法正常工&#8230;]]></description>
										<content:encoded><![CDATA[<p><b>问：我正在使用一键式功能安装演示，但由于某种原因它没有安装演示！</b></p>
<p><b>答：</b>根据您的服务器设置，此功能可能无法正常工作。如果发生这种情况，请手动设置演示。只需在<a href="#demo-manually" rel="nofollow">此处</a>执行以下步骤！</p>
<p><b>问：我正在使用 One Click Feature 安装 Demos，但由于某种原因它没有离开 0% (Database Reset&#8230;)</b></p>
<p><b>A:</b>只需打开位于 WordPress 安装目录中的 wp-config 文件，并在其底部添加这一行<strong>error_reporting(1);</strong></p>
<p><b>问：我正在使用一键式功能安装演示，但是当我单击确定时，我得到一个白屏！！</b></p>
<p><b>答：</b>简单！刷新页面 ：）</p>
<p><b>问：安装此主题时，出现以下错误：“您确定要执行此操作吗？请重试。” 我该怎么做才能解决这个问题？！</b></p>
<p><b>答：只需按照</b><a href="#e1" rel="nofollow">此处</a>的下一步操作即可！</p>
<p><b>问：安装此主题时，出现以下错误：“警告：POST Content-Length of xxxxxxx bytes 超出第 0 行 Unknown 中的 xxxxxx 字节限制。您确定要这样做吗？请重试。” 我该怎么做才能解决这个问题？！</b></p>
<p><b>答：只需按照</b><a href="#e2" rel="nofollow">此处</a>的下一步操作即可！</p>
<p><b>问：我正在使用 Child-Theme 选项，当我进行一些修改时，我的网站没有改变&#8230;</b></p>
<p><b>答：</b>如果您更改了主题文件夹的名称，则必须在<a href="#e3" rel="nofollow">此处</a>执行以下步骤！</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
