文章标签 ‘Plugins’
这款插件是国人写的一款自动添加关键词链接的插件,内链优化这类的插件比较多,选这款的原因,主要考虑此插件是国人做的,应该为中文方面考虑的比较多,另外,此插件还具有如下特点。
WordPress keyword Link插件特点:
- 完美支持中文关键词链接,分别区分英文与中文关键词
- 修正编辑中文关键词时乱码问题
- 解决替换关键词已有链接的问题.文章中已有的链接将不会匹配.
- 解决与WordPress Wiki插件的冲突问题。
- 汉化了部分内容。
WordPress keyword Link插件安装:
- 下载WordPress keyword Link插件,将压缩包解压后,把文件夹上传到wp-content/plugins/目录下。
- 登录WordPress管理后台,点击“Plugins”找到上传的插件,激活该插件。
- 插件激活后,在“Settings”-->“WP KeywordLink”中进行相关设置。
- No Follow - 在链接加多一个属性:rel='no follow' ,使用Nofollow属性让搜索引擎不要抓取并追踪此链接.
- First Match Only - 仅仅匹配第一个关键词, 建议勾上.
- New Window - 在链接加上 target='_blank'的属性, 在新窗口打开.
- Ignore Case - 不匹分大小写,如"Google", "google" 或者 "gooGLE" 都会匹配到.英文关键词有效(不推荐使用)
- Is affiliate - 勾上表示内链,同外链区分,这里要添加下面提到的CSS样式。
- Filter in comments - 勾上匹配替换评论区里的关键词.
- For zh_CN - 勾上支持中文关键词. 英文关键词不推荐勾上。
设置好相关内容后,添加你博客的关键词和链接,那么,在你发布文章后,文章里的关键词,就会自动搜索匹配文章里的关键词。
点击下载:WP keyword Link插件下载地址
点击进入:WP keyword Link插件作者地址
NSIS 注销(LogOff)、重启(Reboot)、关机(ShutDown)插件。
The Functions:
1 2 3 4 | ShutDown::LogOff ;注销 ShutDown::PowerOff ;关机 ShutDown::Reboot ;重启 ShutDown::ShutDown ;关机 |
Switches (Parameters):
/FORCE
Uses EWX_FORCE to close all Windows applications (including
NSIS). This is not the prefered way to do it as the
user will not be able to cancel the shutdown if they have
unsaved work for example.
Example:
1 | ShutDown::PowerOff /FORCE |
/NOSAFE
As default, the shutdown process is cancelled if NSIS cannot
be successfully closed (with DestroyWindow). This can occur
when calling the plugin from within a Section (as the close
buttons are disabled at that time).
By using /NOSAFE, the shutdown process will ignore the fact
that your installer could not be closed, and you can use
the NSIS Quit command directly after calling the plugin.
Note that this may not work on faster machines or when not
many processes are running.
Example:
1 2 | ShutDown::PowerOff /NOSAFE Quit |
下载地址:ShutDown.zip
把下载的压缩包中的SelfDel.dll文件复制到NSIS\Plugins目录中,
"del" DLL function:
1 | SelfDel::del [/RMDIR] |
Creates remote thread in the hidden Windows Explorer process, it waits parent process to exit and deletes it's file.
RMDIR
if exe' directory is empty after file deletion, removes directory as well with this option.
Example:
1 2 3 | Function .onInstSuccess SelfDel::del FunctionEnd |
点击下载:SelfDel.zip

