Author Archives: Administrator

EXCEL表格密码破解工具 Passper for Excel v3.5.0.3 破解版

EXCEL表格密码破解工具 Passper for Excel v3.5.0.3 破解版 1https://www.tenlonstudio.com/10297.html 1. 下载: https://winsoft.bndstone.com/Passper_for_Excel_v3.5.0.3.zip 1. 下载: https://winsoft.bndstone.com/Passper_for_Excel_v3.2.0.zip [旧版本] 2. 安装: 以 管理员身份 安装 主程序 安装完先不要启动程序 右键 快捷键 – 属性 – 打开文件位置 – 破解文件 替换 原始文件 再次打开时 – 已经激活 ,可以开始使用

Office文档密码破解工具 ElcomSoft Advanced Office Password Recovery v6.34 Build 1889 破解版

Office文档密码破解工具 ElcomSoft Advanced Office Password Recovery v6.34 Build 1889 破解版 1https://www.tenlonstudio.com/6893.html 1. 下载: https://winsoft.bndstone.com/ElcomSoft_Advanced_Office_Password_Recovery_v6.34_Build_1889.zip 2. 安装: 以 管理员身份 安装主程序 安装完先不运行 右键 – 属性 – 把破解文件复制 到 安装文件下 再打开时就已经激活,可以使用了

RAR压缩文件密码破解 Amazing Rar Password Recovery v1.5.8.8 注册版

RAR压缩文件密码破解 Amazing Rar Password Recovery v1.5.8.8 注册版 1https://www.tenlonstudio.com/5813.html 1. 下载: https://winsoft.bndstone.com/Amazing_Rar_Password_Recovery_v1.5.8.8.zip 2. 安装: 以 管理员身份 安装 主程序 安装完先别运行 把注册表注入 运行就已经激活了

PassFab for Office(Office密码破解)v8.4.0.6中文破解版(附破解补丁和教程)

PassFab for Office(Office密码破解)v8.4.0.6中文破解版(附破解补丁和教程) 1https://www.zdfans.com/html/34245.html 1. 下载: https://winsoft.bndstone.com/PassFar_for_Office_V8.4.0.6.zip 2. 安装: 以 管理员身份 安装 主程序 安装完先别运行 右键 快捷键 – 属性 – 打开文件位置 – 破解文件 复制 替换原来文件 打开就已经激活

当WordPress文章中没有设置特色图片时,读取文章中的第一张图片

当WordPress文章中没有设置特色图片时,读取文章中的第一张图片 1https://www.91wordpress.com/370.html 1. 切换到你主题所在目录,打开function.php文件,加入下面这段代码:注:此方法工作原理是查找文章内有没img这个标签,如果有就调出第一张图片,如果没有就用一张设计好的图片代替 12345678910111213function catch_that_image() {   global $post, $posts;   $first_img = ”;   ob_start();   ob_end_clean();   $output = preg_match_all(‘/<img.+src=[\’"]([^\’"]+)[\’"].*>/i’, $post->post_content, $matches);   $first_img = $matches [1] [0];   if(empty($first_img)){ //Defines a default image     $first_img = get_bloginfo(‘template_url’)."/images/default.jpg";   }   return $first_img; } 2. 在想调用的地方,加入下面这段代码: 1234<?php  $a=catch_that_image();  echo ‘<img src="’.$a.’" […]

WordPress建站时不使用插件实现SMTP发送邮件的功能

备注: 一开始用的是插件,设置起来非常麻烦.后来改用代码,直接申请个专用密码就可以,非常简单. 这两种方法都不需要启用 postfix ,也无需启用任何端口. 1. 用代码代替如下 Gmail Smtp 插件 12https://bndstone.com/458.html https://www.91wordpress.com/408.html 1-1. 切换到主题目录,打开 functions.php 文件, 12cd /home/wwwroot/default/bndstone/wp-content/themes/flatsome/ vi functions.php 1-2. 添加如下代码: 123456789101112function mail_smtp($phpmailer) {     $phpmailer->isSMTP();     $phpmailer->SMTPAuth = true;            //不用改, 启用SMTPAuth服务     $phpmailer->Port = 465;                 //不用改, SMTP邮件发送端口,常用端口有:25,安全链接端口:465、587 […]

WordPress内容页图片智能添加alt属性(自动添加文章标题作为图片alt属性)

WordPress内容页图片智能添加alt属性(自动添加文章标题作为图片alt属性) 1https://www.91wordpress.com/457.html 切换到主题目录,打开functions.php文件,添加如下代码: 12345678910111213141516171819202122function image_alt( $imgalt ){         global $post;         $title = $post->post_title;         $imgUrl = "<img\s[^>]*src=("??)([^" >]*?)\\1[^>]*>";         if(preg_match_all("/$imgUrl/siU",$imgalt,$matches,PREG_SET_ORDER)){                 if( !empty($matches) ){                       […]

代码实现文章缩略图的方法

代码实现文章缩略图的方法 1https://www.91wordpress.com/703.html 12cd /home/wwwroot/default/vermaxcn/wp-content/themes/flatsome/ vi functions.php 12345678910111213141516171819add_theme_support( ‘post-thumbnails’ ); function post_thumbnail( $width = 255,$height = 130 ){     global $post;     if( has_post_thumbnail() ){         $timthumb_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID),’full’);         $post_timthumb = ‘<img src="’.get_bloginfo("template_url").’/timthumb.php?src=’.$timthumb_src[0].’&amp;h=’.$height.’&amp;w=’.$width.’&amp;zc=1" alt="’.$post->post_title.’" class="thumb" title="’.get_the_title().’"/>’;         echo $post_timthumb;     } else { […]

代码实现 关闭后台自动更新功能

代码实现 关闭后台自动更新功能 1https://www.91wordpress.com/934.html 1. 关闭后台更新提示 切换到主题目录,打开functions.php文件,加入以下代码: 12cd /home/wwwroot/default/vermaxcn/wp-content/themes/flatsome/ vi functions.php 1234567//移除更新提示 function remove_core_updates(){  global $wp_version;return(object) array(‘last_checked’=> time(),’version_checked’=> $wp_version,); } add_filter(‘pre_site_transient_update_core’,’remove_core_updates’); add_filter(‘pre_site_transient_update_plugins’,’remove_core_updates’); add_filter(‘pre_site_transient_update_themes’,’remove_core_updates’); 2. 关闭自动更新功能切换到网站根目录,打开config.php文件,加入以下代码: 12cd /home/wwwroot/default/vermaxcn vi wp-config.php 1define( ‘AUTOMATIC_UPDATER_DISABLED’, true ); 3. 重启 nginx 1systemctl restart nginx.service 4. 已成功,后台 修改前后对比

RAR压缩文件密码破解工具 Passper for RAR v3.5.0.2 破解版

RAR压缩文件密码破解工具 Passper for RAR v3.5.0.2 破解版 1https://www.tenlonstudio.com/10319.html 1. 下载: https://winsoft.bndstone.com/Passper_for_RAR_v3.2.0.zip 2. 安装: 以 管理员身份 运行主程序 主程序安装完成后先不要打开,将破解补丁复制替换到软件安装目录下即可 再打开时就已经激活了