开发文档

TextPress 开发者文档

从入门到精通,帮助你快速掌握 TextPress 开发技巧

主题开发 目录结构

主题目录结构

了解 TextPress 主题的标准目录结构。

themes/your-theme/
theme.json 主题配置文件
functions.php 主题函数
templates/
layout.php
index.php
post.php
page.php
assets/
style.css
app.js

theme.json 配置

JSON
{
    "name": "My Theme",
    "version": "1.0.0",
    "author": "Your Name",
    "description": "主题描述",
    "screenshot": "screenshot.png"
}
反馈 顶部