星期一 , 26 5 月 2025

WP教程

最新文章

5 月, 2025

  • 25 5 月

    在wp网站部署社交链接的模块

    要执行先要加载fontawesome到网站,记得要同时下载fonts文件夹,这些是svg的样式。 How to Add More Social Networks Method 1: Using the Filter (Recommended) Add this to your theme's functions.php after the main code: // Add custom social networks function add_more_social_networks($networks...

    Read More »
  • 25 5 月

    @wordpress/create-block 创建多个block框架教程

    如果只转移的话带有package.json的话就 使用 npm install 进行安装 只需要安装一次npm的module模块: npx @wordpress/create-block@latest my-custom-block --variant dynamic --namespace wptutorblocks my-custom-block 是block的名字 --variant: 设置输出为render.php 设置dynamic : 不输出静态内容 ...

    Read More »
  • 14 5 月

    HTML unicode 符号清单

    SymbolDescriptionUnicode©Copyright©®Registered®™Trademark™€Euro€£Pound£¥Yen¥ SymbolDescriptionUnicode±Plus-minus±×Multiplication×÷Division÷∞Infinity∞≠Not equal≠≤Less or equ...

    Read More »
  • 10 5 月

    语义推荐AI-Powered Search & Recommendation文章和实时搜索插件讲解

    在这个插件中,“语义(semantic)”指的是超越关键词字面匹配的意义理解。它主要用于“语义搜索”和“语义推荐”,也就是插件在搜索和推荐功能中会使用“内容的含义”来进行更智能的匹配,而不仅仅是对关键词的简单比对。 具体理解方式如下: ✅ 传统搜索(非语义) WordPress 默认搜索是基于关键词的。例如: 用...

    Read More »
  • 9 5 月

    WP主题开发的安全性加固

    Below is a checklist of hardening, cleanup, and performance-tweaks you can apply in your theme’s functions.php (or better yet, a small “theme-utilities” plugin). Feel free to cherry-pick what fits your project. 1. Secure the Theme 1.1 Hide WordPress Version Expose as little as possi...

    Read More »

4 月, 2025

  • 24 4 月

    古登堡禁止block添加flex 布局 disable the is_layout_flex or is_layout_flow

    // This line is preferably be added to your theme's functions.php file // with other add_theme_support() function calls.add_theme_support( 'disable-layout-styles' );

    Read More »
  • 7 4 月

    wp编辑器关闭smat quote功能实现 引用号正常

    wp自带编辑器有smart quote功能, 要关闭wptexturize。 WordPress 使用 wptexturize()函数 转换 ' 到 ’, ‘, 或取决于上下文的其他实体. 比方说会将let's 转换成 let' s 符号后面有空格符号形式也会转变, 所以要在钩子中去除掉这个函数 remove_filter('the_content', 'wptexturize'); remove_filter('the_title', 'w...

    Read More »
  • 3 4 月

    如何给自定义表导入另外一个数据库的表的部分字段

    比方说其他类型网站的数据库的表里有很多没用的字段,你在wordpress里的表单的字段去除了很多没用的字段,但是部分字段都还是重叠的状态,所以要确保被导入的表的字段符合要导入的表的字段,不然无法导入; 确保两个数据库相邻,去mysql后台运行sql命令: -- Make sure you're in the WordPress database USE you...

    Read More »