pressx / starter-kit
PressX - A headless WordPress setup
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:TypeScript
Type:project
Requires
- php: >=8.0
- composer/installers: ^2.0
- htmlburger/carbon-fields: ^3.6
- vlucas/phpdotenv: ^5.5
- wpackagist-plugin/classic-editor: ^1.6
- wpackagist-plugin/wp-graphql: ^2.0
This package is auto-updated.
Last update: 2025-04-02 14:07:11 UTC
README
PressX is a modern headless WordPress setup that combines the power of WordPress as a backend CMS with Next.js for the frontend, all containerized using DDEV for consistent development environments.
🚀 Quick Start
-
Prerequisites
-
Installation
# Clone the repository git clone [your-repo-url] cd pressx # Start DDEV ddev start # Install WordPress and dependencies ddev install # Or install with preview mode enabled ddev install --preview # Install Next.js dependencies cd nextjs npm install
The
ddev install
command will:- Set up the WordPress installation
- Install and activate required plugins (pressx-core, classic-editor, wp-graphql)
- Configure permalink structure
- Create sample content (landing pages, blog posts)
- Set up navigation menus
- Generate admin credentials
Using the
--preview
flag will additionally:- Configure the Next.js environment for preview mode
- Set up the necessary environment variables
- Enable real-time content previewing from WordPress to Next.js
You can also create content manually using the WP CLI commands:
# Create all standard content ddev wp pressx create-pages && \ ddev wp pressx create-home && \ ddev wp pressx create-pricing && \ ddev wp pressx create-features && \ ddev wp pressx create-resources && \ ddev wp pressx create-get-started && \ ddev wp pressx create-articles && \ ddev wp pressx create-contact && \ ddev wp pressx create-menu && \ ddev wp pressx create-footer-menu
-
Running the Application
# Start WordPress backend ddev start # Start Next.js frontend (in a separate terminal) cd nextjs npm run dev # Or use the DDEV command if you installed with preview mode ddev nextjs
🏗️ Project Structure
pressx/
├── public_html/ # WordPress installation
│ └── wp-content/
│ └── plugins/
│ └── pressx-core/ # Custom plugin for headless functionality
├── nextjs/ # Next.js frontend application
│ └── src/
│ ├── components/ # Reusable UI components
│ │ └── sections/ # Page section components
│ ├── pages/ # Next.js pages
│ └── lib/ # Utility functions and API clients
├── drupal-config/ # Drupal configuration reference files
├── scripts/ # Helper scripts for content creation
├── vendor/ # Composer dependencies
└── .ddev/ # DDEV configuration
🔧 Development
WordPress Backend
- Local URL: https://pressx.ddev.site
- Admin URL: https://pressx.ddev.site/wp-admin
- GraphQL Endpoint: https://pressx.ddev.site/graphql
The WordPress backend uses several key components:
- Carbon Fields for custom fields
- WPGraphQL for the GraphQL API
- Custom post types and fields defined in the pressx-core plugin
- Classic Editor for content management
Next.js Frontend
- Development URL: http://pressx.ddev.site:3333 or http://localhost:3333
- Development:
cd nextjs && npm run dev
- Build:
cd nextjs && npm run build
- Start:
cd nextjs && npm start
Preview Mode
PressX supports a preview mode that allows you to see content changes in real-time before publishing:
-
Enabling Preview Mode:
- Install with preview mode:
ddev install --preview
- Or toggle it on/off anytime:
ddev toggle-preview on
orddev toggle-preview off
- Or manually configure by setting
NEXT_PUBLIC_PREVIEW_MODE=true
innextjs/.env.local
- Install with preview mode:
-
Using Preview Mode:
- Edit content in WordPress
- Click the "Preview" button to see changes in the Next.js frontend
- Preview URLs follow the pattern:
http://localhost:3333/preview/[id]
-
Admin Bar:
- When in preview mode, an admin bar appears at the top of all pages
- Shows the current page type and post ID for easy reference
- Provides quick links to edit the current content in WordPress
- Includes a home button for easy navigation
- Can be hidden/shown with a toggle button
- Responsive design works on all device sizes
- Automatically adjusts the page layout to prevent overlap with content
-
Preview Mode Environment Variables:
NEXT_PUBLIC_PREVIEW_MODE=true WORDPRESS_PREVIEW_SECRET=pressx_preview_secret WORDPRESS_PREVIEW_USERNAME=admin WORDPRESS_PREVIEW_PASSWORD=your_password_here
IMPORTANT: You must set
WORDPRESS_PREVIEW_USERNAME
andWORDPRESS_PREVIEW_PASSWORD
to valid WordPress credentials with appropriate permissions. These credentials are used to authenticate with the WordPress GraphQL API to access unpublished content. Never commit these credentials to version control. -
JWT Authentication:
- The preview mode uses JWT authentication to securely access unpublished content
- JWT tokens are automatically retrieved and stored in cookies
- The GraphQL client uses these tokens when making requests to the WordPress API
- For security, tokens expire after a short period and are automatically refreshed
🛠️ Key Features
-
Headless WordPress
- Decoupled architecture
- GraphQL API using WPGraphQL
- Custom post types and fields
-
Modern Frontend
- Next.js for server-side rendering
- TypeScript support
- Component-based architecture
- Tailwind CSS for styling
-
Development Environment
- DDEV for containerization
- Automated setup process
- Consistent development environment
-
Content Sections
- Flexible page builder with multiple section types
- Component-based design for easy customization
- Responsive layouts for all devices
-
Sample Content
- Pre-configured landing pages (Home, Features, Pricing, Resources, Get Started, Contact)
- Sample blog posts
- Navigation menus (Primary and Footer)
-
Preview Mode
- Real-time content previewing
- Secure preview links
- Seamless WordPress to Next.js integration
📦 Available Section Types
PressX includes a variety of section types for building flexible landing pages:
- Hero - Feature prominent content with various layout options
- Text - Simple text sections with optional links
- Accordion - Expandable content sections for FAQs or detailed information
- Card Group - Display content in card format with various card types
- Carousel - Scrollable content with images and text
- Embed - Embed external content with support for rich media scripts
- Gallery - Display multiple images in a grid layout
- Logo Collection - Showcase partner or client logos
- Media - Display images or videos with optional captions
- Newsletter - Email signup form
- Pricing - Display pricing options in a structured format
- Quote - Highlight testimonials or important quotes
- Side by Side - Two-column layout with text and media
- Recent Posts - Display recent blog posts
🔄 Working with Section Types
Embed Section
The Embed section allows you to include external content like videos, maps, or other third-party widgets. Recent updates have improved this section to support full HTML/script embeds rather than just URLs.
Key Features:
- Support for rich script embeds (iframes, JavaScript widgets, etc.)
- Optional title and caption
- Configurable maximum width
- Responsive design
Example Usage:
[ '_type' => 'embed', 'title' => 'Watch Our Tutorial', 'script' => '<iframe src="https://www.youtube.com/embed/VIDEO_ID" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen style="width:100%; aspect-ratio:16/9;"></iframe>', 'caption' => 'Learn how to get started with PressX in this quick tutorial.', 'max_width' => '800px', ]
📦 Dependencies
WordPress (Composer)
htmlburger/carbon-fields
: Custom fields frameworkwp-graphql
: GraphQL API for WordPressclassic-editor
: Traditional WordPress editing experience- Other WordPress plugins managed via Composer
Frontend (npm)
- Next.js
- TypeScript
- Tailwind CSS
- Shadcn UI components
- Other frontend dependencies managed via npm
🔄 Common Workflows
Adding Custom Fields
- Define fields in
pressx-core/pressx-core.php
- Update GraphQL schema if needed
- Update TypeScript types in the frontend
Adding New Post Types
- Register post type in
pressx-core/pressx-core.php
- Add custom fields if needed
- Update GraphQL schema
- Create corresponding frontend components
Creating Content
-
Use the WordPress admin interface to create content
-
Alternatively, use the WP CLI commands to create content:
# Create a landing page ddev wp pressx create-landing # Create a contact page ddev wp pressx create-contact # Create a get started page ddev wp pressx create-get-started # Create an AI-generated landing page ddev wp pressx create-ai-landing "coffee shop"
See the PressX WP CLI Commands section for more details.
🛠️ PressX WP CLI Commands
PressX includes a set of WP CLI commands to help you manage and create content. These commands are available under the wp pressx
namespace and can be run using DDEV:
Available Commands
# Create standard pages (Privacy Policy and Terms of Use) ddev wp pressx create-pages # Create specific landing pages ddev wp pressx create-home ddev wp pressx create-pricing ddev wp pressx create-features ddev wp pressx create-resources ddev wp pressx create-landing ddev wp pressx create-get-started ddev wp pressx create-articles ddev wp pressx create-contact # Create navigation menus ddev wp pressx create-menu ddev wp pressx create-footer-menu # Create AI-generated landing page ddev wp pressx create-ai-landing "coffee shop" # Test Pexels API integration ddev wp pressx test-pexels ddev wp pressx test-pexels "mountain landscape" --count=6
Command Options
Most commands support the following options:
--force
- Force recreation of content even if it already exists
AI Landing Page Generation
The create-ai-landing
command creates an AI-generated landing page using OpenRouter or Groq with optional Pexels image search:
-
Configuration:
- Add API keys to your
wp-config.php
:define('OPENROUTER_API_KEY', 'your-api-key-here'); // or define('GROQ_API_KEY', 'your-api-key-here'); // Optional: Enable Pexels image search define('PRESSX_USE_PEXELS_IMAGES', TRUE); define('PEXELS_API_KEY', 'your-pexels-api-key'); // Optional: Set preferred AI API define('PRESSX_AI_API', 'openrouter'); // or 'groq'
- Add API keys to your
-
Usage:
# Generate with interactive prompt ddev wp pressx create-ai-landing # Generate with specific prompt ddev wp pressx create-ai-landing "coffee shop"
-
Features:
- Generates 6 different section types
- Creates appropriate content based on the prompt
- Automatically searches for relevant images if Pexels is enabled
- Creates a published landing page with a unique slug
Chatbot Integration
PressX includes an AI-powered chatbot that can be integrated into your website to provide interactive assistance to your visitors:
-
Configuration:
- Add API keys to your
wp-config.php
:// Required for chatbot functionality define('OPENAI_API_KEY', 'your-openai-api-key-here'); // Optional: Configure chatbot behavior define('PRESSX_CHATBOT_MODEL', 'gpt-4o'); // Default model to use define('PRESSX_CHATBOT_SYSTEM_PROMPT', 'You are a helpful assistant for our website.'); // Default system prompt define('PRESSX_CHATBOT_MAX_TOKENS', 1000); // Maximum response length
- Add API keys to your
-
Adding to Pages:
- The chatbot can be added to any page using the Chatbot section type
- Configure appearance, initial messages, and behavior in the section settings
- Customize the chatbot's knowledge base by providing specific instructions
-
Features:
- Real-time AI-powered conversations with site visitors
- Customizable appearance to match your site's design
- Context-aware responses based on the page content
- Optional knowledge base integration for product-specific information
- Conversation history for returning visitors (requires user consent)
- Mobile-responsive design
-
Usage Example:
[ '_type' => 'chatbot', 'title' => 'Customer Support', 'initial_message' => 'Hello! How can I help you today?', 'placeholder_text' => 'Type your question here...', 'position' => 'bottom-right', // Options: bottom-right, bottom-left, centered 'theme' => 'light', // Options: light, dark, custom 'custom_instructions' => 'You are a helpful assistant for our coffee shop website. You can help with menu questions, store hours, and placing orders.', ]
Pexels API Testing
The test-pexels
command helps test the Pexels API integration:
# Test with default queries ddev wp pressx test-pexels # Test with a specific query ddev wp pressx test-pexels "coffee shop" # Test with a specific query and image count ddev wp pressx test-pexels "mountain landscape" --count=6
Creating All Content
To create all standard content at once:
ddev wp pressx create-pages && \ ddev wp pressx create-home && \ ddev wp pressx create-pricing && \ ddev wp pressx create-features && \ ddev wp pressx create-resources && \ ddev wp pressx create-landing && \ ddev wp pressx create-get-started && \ ddev wp pressx create-articles && \ ddev wp pressx create-contact && \ ddev wp pressx create-menu && \ ddev wp pressx create-footer-menu
🚨 Troubleshooting
Common Issues
-
Carbon Fields UI Not Loading
- Ensure Carbon Fields assets are properly copied to the plugin directory
- Check browser console for JavaScript errors
- Verify WordPress admin scripts are loading
-
GraphQL Errors
- Verify WPGraphQL plugin is activated
- Check field registration in the schema
- Validate query structure
- Test queries in the GraphQL IDE at https://pressx.ddev.site/graphql
-
Next.js Development Server Issues
- Ensure Node.js version is compatible
- Check for TypeScript errors
- Verify GraphQL queries match the schema
-
Preview Mode Authentication Issues
- If you're having trouble with preview mode authentication:
- Run
ddev toggle-preview on
to reset the admin password and update environment variables - Check that the WPGraphQL JWT Authentication plugin is active
- Verify that your
.env.local
file contains the correct credentials - Clear your browser cookies and try again
- Run
- The
toggle-preview
script automatically:- Sets a secure password for the admin user
- Updates the
.env.local
file with the correct credentials - Activates the necessary plugins for JWT authentication
- If you're having trouble with preview mode authentication:
-
DDEV Configuration Issues
- Run
ddev describe
to check the current configuration - Ensure ports 80, 443, and 3333 are available
- Check DDEV logs with
ddev logs
- Run
📝 Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
📄 License
PressX is dual-licensed:
- WordPress-specific code (plugins, themes, PHP files) is licensed under GPL-2.0 or later
- Next.js frontend code is licensed under the MIT License
See the LICENSE file for details.