Azure Static Web App指定Hugo版本及自定义构建命令

Azure Static Web App指定Hugo版本的方法:在azure-pipelines.yml文件中,steps块下添加如下代码: env: HUGO_VERSION: 0.122.0 如果要自定义构建命令,则在inputs块下添加如下代码: app_build_command: 'hugo --cleanDestinationDir' …

Hugo生成404 Page分页解决方法

如果Hugo主题layouts目录中具有404.html模板,Hugo会在网站根目录中生成404.html页面,通常这已经足够了。但是,新版本的Hugo将404当作Kinds来处理 …

Azure Static Web App突破配置文件20KB限制添加重定向规则

之前我的博客从WordPress转为Hugo后,URL发生了重大变化,有507篇文章需要做301重定向。 Azure Static Web App可以通过配置文件staticwebapp.config.json …

Composer PHP version错误解决方法

程序引用了Composer包,页面报错如下: Composer detected issues in your platform: Your Composer dependencies require a PHP version ">= 8.1.0". 检查以下路径文件: /vendor/composer/platform_check.php 发现如下检测PHP版本的代码: if (!(PHP_VERSION_ID >= 80100)) { $issues[] = 'Your Composer dependencies require a PHP version ">= 8.1.0". You are running ' . PHP_VERSION . '.'; } 本地电 …

Windows11运行软件提示MSVCR120.dll缺失

尝试过的无效方法: 在网上搜索msvcr120.dll拷贝到system32目录; 安装Microsoft Visual C++的最新版本; 安装Microsoft Visual C++ 2013的64位版本。 解决方法: …

Kindle图书馆电子书下载并转换为epub格式

Kindle图书馆电子书下载并转换为epub格式

Kindle中国电子书店已经停止运营,电子书的可下载时间截止于2024年6月30日,也就是这个月底。官方公告如下: Kindle中国电子书店已于2023年6月30日停止运营,并将于2 …

Kindle558刷安卓救砖记录

设备:Kindle558(第八代) 系统版本:5.16.2.1.1 刷机过程 越狱:参考书伴Kindle 通用越狱教程:适用版本小于等于 5.16.2.1.1 固件。 安装MRPI和KUAL插件:参考书伴Kind …

Kindle咪咕刷安卓系统记录

不满足于Kindle咪咕的使用体验,参考B站UP主Ygjsz_的Kindle咪咕刷入修改版安卓5.1教程和Ad_233的Kindle咪咕版完全折腾指南,终于将手上这个大部分时间闲置 …

WordPress获取评论列表函数:get_comments

WordPress函数get_comments用于获取整个网站或指定文章的评论列表。 get_comments( string|array $args = ” ): WP_Comment[]|int[]|int 函数参数$args数组或字符串 author_email 字符串 评论作者的邮箱地址。 author_url 字符串 评论作者的网址。 …

WordPress获取指定ID评论数据函数:get_comment

WordPress函数get_comment用于获取指定ID的评论对象数据。 get_comment( WP_Comment|string|int $comment = null, string $output = OBJECT ): WP_Comment|array|null 函数参数$comment WP_Comment|字符串|整数 评论对象或评论ID。 $output 字 …