星期四 , 23 1 月 2025

Recent Posts

Git tutorial

Certainly! Git is a powerful version control system that allows developers to track changes to their code, collaborate with others, and manage software development projects efficiently. Here's a comprehensive tutorial to get you started with Git: Table of Contents: Introduction to Git ...

Read More »

关于query_vars的一些解释

query_vars就是查询时候的一些参数,比方说你提交wp_query自定义查询的时候要设置cat名字 , 文章类型, tag名字等, 这些就是你发送wp_query请求时候附带的query vars, 这个query 查询所有满足变量条件的查询。 其他查询也是一样,打印出来的结果就是结果,而你代码上则是原因。 get_query_var 则是获取到query_v...

Read More »

wp置顶文章只在第一页第二页还输出置顶文章的解决方案

wp默认的置顶文章只在第一页置顶,超过第一页的话置顶文章依然还会存在他原来的位置上,要解决这种方法,让置顶文章一直都消失在第一页置顶的话,参考下面的代码进行输出: 或者直接用两个wp query分别输出 $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; // Fetch sticky posts separately $st...

Read More »