随笔分类 -  WordPress

摘要:在 header.php 添加以下代码 <!-- 图片放大 --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" /> 在 阅读全文
posted @ 2020-04-17 00:49 Ryan_zheng 阅读(2469) 评论(1) 推荐(0) 编辑
摘要:SELECT wpp.post_title, wpp.guid, wpp.post_date, REPLACE( REPLACE( REPLACE( REPLACE( wpo.option_value, '%year%', DATE_FORMAT(wpp.post_date,'%Y') ), '%m 阅读全文
posted @ 2020-02-10 19:20 Ryan_zheng 阅读(350) 评论(0) 推荐(0) 编辑
摘要:什么是 WordPress 自定义字段 Custom Fields 我们在使用 WordPress 撰写日志或者页面的时候,都会在编辑框下面看到自定义字段(Custom Fields),那么什么是自定义字段呢?这个 WordPress 自定义字段又是干什么的? WordPress 自定义字段是对 W 阅读全文
posted @ 2020-02-07 01:14 Ryan_zheng 阅读(3078) 评论(0) 推荐(0) 编辑
摘要:默认 Wordpress 的 Page 页面是按照 Title 升序排序的,如果创建的页面很多,使用起来会很不方面,所以可以通过将以下代码添加到 functions.php 中,实现将 Page 页面按照 Date 倒序 // 将 Page 页面默认排序修改为按照 Date 倒序 function 阅读全文
posted @ 2020-02-05 12:10 Ryan_zheng 阅读(1049) 评论(0) 推荐(0) 编辑
摘要:Wordpress 插件 Yoast SEO 会默认添加上结构化数据 但是这种结构化数据内容有限,如果需要添加自定义的结构化数据,就需要安装一些专门做结构化数据优化的插件,所以这些结构化插件都会有一个选项,就是不加载 SEO 默认的结构话数据,我们也可以将以下代码移除 SEO data struct 阅读全文
posted @ 2020-01-06 11:34 Ryan_zheng 阅读(303) 评论(0) 推荐(0) 编辑
摘要:WordPress 提供了一个,timer_stop()函数, 官方给出的介绍为:检索或显示从页面开始到调用函数的时间。 简单的说就是我们访问一个 WordPress 链接,服务器生成处理这个页面所需要的时间,当然这并不是指我们打开或者加载这个页面的时间。更多的是服务器端的处理速度和 WordPre 阅读全文
posted @ 2019-12-31 12:04 Ryan_zheng 阅读(984) 评论(0) 推荐(0) 编辑
摘要:$args = array( 'post_type' => array( 'post','knowledgebase'), 'post_status' => 'publish', 'author' => $author_id, 'numberposts'=> $author_all_posts ); 阅读全文
posted @ 2019-12-04 11:55 Ryan_zheng 阅读(563) 评论(0) 推荐(0) 编辑
摘要:wordpress 获取指定作者或者文章的所有评论数量 <?php $args = array( 'post_author' => '' // fill in post author ID ); $author_comments = get_comments($args); echo count($ 阅读全文
posted @ 2019-12-03 17:30 Ryan_zheng 阅读(836) 评论(0) 推荐(0) 编辑
摘要:WordPress 使用的 jQuery 版本由于需要考虑到很多安全稳定的因素,所以一般不会使用最新版本的 jQuery, 可以通过以下方式移除 WordPress 自定加载的 jQuery,并加载自定义的 jQuery // Remove default jquery function custo 阅读全文
posted @ 2019-11-19 11:26 Ryan_zheng 阅读(828) 评论(0) 推荐(0) 编辑
摘要:如果升级到最新版本的 Wordpress 后,发现有 bug,需要回滚回上一个相对稳定的版本,可以按照如下步骤: 一、到官网下载压缩包 https://wordpress.org/download/releases/ 二、将压缩文件包解压后,修改对应的配置信息,如 wp-config.php 等 阅读全文
posted @ 2019-11-18 11:49 Ryan_zheng 阅读(444) 评论(0) 推荐(0) 编辑
摘要:有时候我们需要在 Worpdress 中访问其他服务器上的数据库时,可以使用以下方式,在 functions.php 中添加如下代码: // 输入数据库配置参数$mydb = new wpdb('username','password','database','localhost'); $rows 阅读全文
posted @ 2019-11-06 19:43 Ryan_zheng 阅读(1260) 评论(0) 推荐(0) 编辑
摘要:// knowledgebase_category 为 custom post type taxonomy $terms = get_the_terms( get_the_ID() , 'knowledgebase_category' ); var_dump($terms); 阅读全文
posted @ 2019-10-25 12:27 Ryan_zheng 阅读(336) 评论(0) 推荐(0) 编辑
摘要:可以通过 get_bloginfo('name') 区分不同站点 阅读全文
posted @ 2019-06-20 12:22 Ryan_zheng 阅读(379) 评论(0) 推荐(0) 编辑
摘要:问题: 注册新的文章类型后,用新的类型写文章,打开后报 404 错误 原因: 因为虽然注册了新的帖子类型,但WordPress还不知道如何处理它 解决: 到设置 -> 固定链接,重新点击保存,再次打开自定义文章类型的文章即可。 阅读全文
posted @ 2019-05-04 16:37 Ryan_zheng 阅读(94) 评论(0) 推荐(0) 编辑
摘要:功能说明 为了利于SEO优化,我们需要将地址设置为永久链接,在层级不要太深的情况下实现伪静态页面的目的,例如wordpress 默认页面地址为: 修改 Permalink 后的地址: 问题 一般情况当我们把链接更换为非默认的固定链接,即在后台修改 Permalink 后点击保存,前台文章页面会报 4 阅读全文
posted @ 2019-05-04 16:36 Ryan_zheng 阅读(1270) 评论(0) 推荐(0) 编辑
摘要:创建新的 Post type时,文章在后台默认使用 Titile 列进行升序排序,但是通常情况下我们需要按日期 Date 进行降序排序, 参考链接: https://wordpress.stackexchange.com/questions/81939/how-to-order-posts-of-a 阅读全文
posted @ 2019-04-24 23:11 Ryan_zheng 阅读(724) 评论(0) 推荐(0) 编辑
摘要:效果如下: 资料来源: http://yllus.com/2015/12/08/how-to-get-wordpress-post-permalinks-directly-from-the-mysql-database/#comment-339287 阅读全文
posted @ 2019-04-24 18:17 Ryan_zheng 阅读(310) 评论(0) 推荐(0) 编辑
摘要:首先查看角色具有哪些权限: 注意:修改权限的行为是永久性的,除非你手动删除该权限,因为角色的权限设置是保存到数据库中的(保存在数据表 wp_options,字段名称option_name,值为 wp_user_roles), SQL 命令: 可以通过两种方式添加权限: Parameters 参数介绍 阅读全文
posted @ 2019-03-20 00:41 Ryan_zheng 阅读(1129) 评论(0) 推荐(0) 编辑
摘要:功能:后台编辑文章时,可以选择文章使用的模板,效果如下图: 操作步骤: 新建 php 文件,在文件头部添加以上代码, Template Post Type 代表要将模板显示在哪些自定义文章类型中,php 文件可以位于主题目录下的任何目录中, 添加完模板文件后,可以到对应的文章编辑中看到多了一个 Po 阅读全文
posted @ 2019-03-18 14:15 Ryan_zheng 阅读(1939) 评论(0) 推荐(0) 编辑
摘要:https://developer.wordpress.org/reference/functions/get_permalink/ https://wpml.org/forums/topic/how-to-get-post-id-from-the-current-post-permalink/ 阅读全文
posted @ 2019-03-12 17:03 Ryan_zheng 阅读(826) 评论(0) 推荐(0) 编辑