< Developer Manual - ADMEI CMS

Developer Manual

Powerful PHP Backend System, Supports PbootCMS and WordPress Themes

System Introduction

ADMEI CMS is a powerful PHP backend system that supports uploading and using PbootCMS and WordPress frontend themes.

Powerful Backend
WordPress
PbootCMS

Core Features

  • Powerful backend management
  • Support WordPress theme upload
  • Support PbootCMS theme upload
  • Chinese/English bilingual support
  • Articles, Products, Slides management
  • RESTful API interface

Supported Theme Formats

ADMEI CMS supports frontend themes from two major CMS platforms, upload and use:

WordPress
WordPress Themes

The most popular CMS globally, thousands of free themes

PbootCMS
PbootCMS Themes

Open source CMS from China, simple and efficient

WordPress Theme Development

Standard WordPress theme structure:

my-theme/
├── style.css          # Theme Info (Required)├── index.php          # Theme Template (Required)├── functions.php      # Theme Functions├── header.php         # Page Header├── footer.php         # Page Footer├── screenshot.png     # Theme Screenshot└── assets/            # Static Assets

style.css Example

/*
Theme Name: My WordPress Theme
Theme URI: https://example.com
Author: Your Name
Description: This is a WordPress themeVersion: 1.0.0
License: GNU General Public License v2 or later
*/

PbootCMS Theme Development

Standard PbootCMS theme structure:

my-theme/
├── css/               # CSS Files├── js/                # JavaScript Files├── images/            # Image Files├── index.html         # Home Template├── list.html          # List Page Template├── about.html         # About Page└── contact.html       # Contact Page

PbootCMS Template Tags

{$pboot:companyname}  # Company Name{$pboot:companyphone} # Company Phone{pboot:nav}          # Navigation Menu{pboot:list}         # List Content{pboot:slide}         # Slides

API Development

Endpoint Description Method
/api.php?mod=articlesGet Articles ListGET
/api.php?mod=productsGet Products ListGET
/api.php?mod=slidesGet SlidesGET
/api.php?mod=companyGet Company InfoGET
/api.php?mod=settingsGet SettingsGET

Theme Upload Guide

  1. Login to admin, go to "Theme Management"
  2. Click "Upload Theme" button
  3. Select theme ZIP package (WordPress or PbootCMS format)
  4. Click activate to preview on frontend
Tip: Theme ZIP packages can be downloaded directly from WordPress theme library or PbootCMS theme sites, upload and use!