2023年7月归档文章 2 篇

Wordpress 显示 Custom Post Type 的自定义分类

Wordpress 显示 Custom Post Type 的自定义分类
假设 Custom Post Type 名字是 CPT 有: register_post_type( 'CPT', $args ); 并且给 CPT 添加了自定义的 Taxonomy 用于添加分类名称,比如 CPT_CAT 有: register_taxonomy( 'CPT_CAT', array( 'CPT' ), $tax_args ); 在文章页面循环里显示文章所属自定义分类则是: $terms = get_the_terms($post->ID, 'CPT_CAT'); foreach ($terms as $term) { echo '<li>&l...

.zst 文件解压缩

.zst 文件解压缩
.zst是 facebook 推出的一种新型压缩方式,压缩率更大速度更快,这里介绍一下 Windows 下怎么解压缩 .zst 文件。 下载 Zstandard 解压软件 Zstandard 发布在 github 上,地址:https://github.com/facebook/zstd 点开右边 Releases 下的最新版本,找到下面 Assets 里 -win64.zip 结尾的,下载本地解压缩。 使用 Zstandard 解压软件 在上一步解压缩后的文件夹里,右键“在终端中打开”,使用命令来解压缩: ./zstd.exe -d D:\File_patch\files.tar.zs...