wordpress数据库中wp_posts表字段post_type及作用

wordpress数据库中wp_posts表字段post_type及作用

在WordPress数据库的wp_posts表中,post_type字段用于区分不同类型的帖子或内容条目。以下是几个常见的post_type值及其作用描述: post:这是W...
阅读原文
wordpress站点服务器频繁访问GET author=1

wordpress站点服务器频繁访问GET author=1

WordPress站点可能正遭遇“作者枚举”攻击。这类攻击旨在通过逐个查询网站上的作者ID,从而收集网站上所有作者的用户名。这可能会为后续的暴力破解...
阅读原文
python读取markdown文件内容

python读取markdown文件内容

一、安装markdwon依赖 pip install markdown 二、将markdown内容转为html def read_md_file(file_path): with open(file_path, 'r', encodin...
阅读原文
python运行wordpress_xmlrpc

python运行wordpress_xmlrpc

wordpress_xmlrpc运行异常 异常: xml.parsers.expat.ExpatError: XML or text declaration not at start of entity: line 2, column 0 解决: ...
阅读原文