WordPress插件-经常使用的一些插件汇总

Minify HTML

压缩页面HTML

Google XML Sitemaps

生成谷歌站点地图

WP Super Cache

缓存使用

MemcacheD Is Your Friend

加速使用

Advanced Database Cleaner

清理无效的Posts,自动草稿,修订版本

Bulk Move

https://www.0co.cn/0co21181/

批量移动Posts到指定分类

Fixed TOC

https://www.themege.com/downloads/fixed-toc-wordpress-plugin/

生成文章内容的目录导航

All In One WP Security & Firewall

安全插件

还有一种插件,暂时没找到,生成文章的导航链接

ZenCart-各个版本需要的PHP运行环境

运行Zen Cart的服务器要求

https://docs.zen-cart.com/user/first_steps/server_requirements/

PHP Version

包括v1.5.8的未来版本将需要PHP 7.1.3+

始终建议使用最新版本的Zen Cart,以实现最大兼容性

Zen Cart v1.5.7 is designed for PHP 5.6 through PHP 7.4
Zen Cart v1.5.6 is designed for PHP 5.5 through PHP 7.3
Zen Cart v1.5.5 is designed for PHP 5.5 up to PHP 7.1
Zen Cart v1.5.4 is designed for PHP 5.5 and PHP 5.6


Zen Cart v1.5.3 is compatible with PHP 5.3.7 thru PHP 5.6
Zen Cart v1.5.2 is compatible with PHP 5.3.7 thru PHP 5.6 (or PHP 5.2.14 with weakened security)
Zen Cart v1.5.1 is compatible with PHP 5.2.14 thru PHP 5.3.x.
Zen Cart v1.5.0 is compatible with PHP 5.2.14 thru PHP 5.3.x.
Zen Cart v1.3.9 series is compatible with PHP 5.2.10 thru PHP 5.3.x.
Zen Cart v1.3.7-v1.3.8a are compatible with PHP 4.3.2 thru PHP 5.2.x, but not PHP 5.3.
Zen Cart v1.2.x through v1.3.6 are compatible with PHP 4.3.2 – 4.4.x. They are NOT compatible with PHP 5.

ZenCart插件-收集汇总一些常用的插件

Changed Files

按更改日期顺序显示在Zen Cart安装中已更改的文件。

https://www.zen-cart.com/downloads.php?do=file&id=2193

Database I/O Manager (DbIo)

数据库I / O管理器(DbIo)提供了一个界面,供您的Zen Cart管理员使用.CSV文件作为界面从数据库导入和导出信息。

https://www.zen-cart.com/downloads.php?do=file&id=2091

View Schema

使用“查看模式”,您可以从管理面板中查看购物车的数据库模式(而不必打开phpMyAdmin或其他工具)。

https://www.zen-cart.com/downloads.php?do=file&id=2270

插件总库

https://www.zen-cart.com/downloads.php

ZenCart-开发环境搭建PSR-2 formatting代码格式

ZenCart官方文档中明确指明了,代码的风格

https://docs.zen-cart.com/dev/developer_environment/

为Zen Cart编写PHP代码不需要特别特殊的环境

支持PHP的IDE很有用。
我们使用PhpStorm。
如果您的编辑者遵循.editorconfig标准,该标准为代码文件设置了格式标准,那么这会很有帮助。

LAMP堆栈对于运行本地开发人员存储很有用。 常见的选项包括XAMPP,WAMP / MAMP,甚至Laravel Valet

Code Formatting

Line-endings in the github repo are (or are expected to be) LF.

Zen Cart usesPSR-2 formatting standards for “new” code.

Coding Standards

https://docs.zen-cart.com/dev/contributing/coding_standards/

PSR-2: Coding Style Guide

https://www.php-fig.org/psr/psr-2/

phpstorm .editorconfig

https://learnku.com/articles/24174

https://editorconfig.org/

这个.editorconfig可以在zencart git项目中找到它

WordPress网址-资料-学习研究资料导航索引

WordPress-官方网址

https://wordpress.org/

https://cn.wordpress.org/

WordPress-数据库设计 wordpress db schema

https://codex.wordpress.org/Database_Description

https://codex.wordpress.org/zh-cn:%E6%95%B0%E6%8D%AE%E5%BA%93%E6%8F%8F%E8%BF%B0

WordPress项目源代码

https://wordpress.org/download/source/

WordPress代码参考

https://developer.wordpress.org/reference/

WordPress服务器安装要求

https://wordpress.org/about/requirements/

PHP version 7.4 or greater.
MySQL version 5.6 or greater OR MariaDB version 10.1 or greater.
HTTPS support

WordPress支持–基础

https://wordpress.org/support/article/using-permalinks/

K开源组件-NewtonJson匿名解析json

没有定义明确类型的情况下,如何解析Json,获取值呢?

背景:有一段json 数据,我不想在系统中定义类型了,如何解析json呢?

JObject

using Newtonsoft.Json;

using Newtonsoft.Json.Linq;

JObject oPostData = JsonConvert.DeserializeObject<JObject>(strPostData);

oPostData.GetValue("Channel").ToString();

通过上面的代码来解析

相关教程:https://blog.csdn.net/q__y__L/article/details/103566693