LLM Prompts

ACF-Enhanced Content Generation for WordPress

Generates content optimized for ACF fields, streamlining WordPress content creation.

The method

Use these prompts to generate structured content for your WordPress website using Advanced Custom Fields (ACF). Tailor the prompts to your specific ACF field groups and fields. Integrate the output directly into your WordPress backend via ACF.

The prompts

Prompt 1
I need you to generate content for a new service page on my website. Use the following Advanced Custom Fields (ACF) structure:

* Field Group: 'Service Page Details'
* 'service_title' (Text): [Provide a clear and compelling title for the service]
* 'service_summary' (Textarea): [Write a concise summary highlighting the main benefits of the service (max 150 characters)]
* 'service_description' (WYSIWYG Editor): [Detailed description of the service, including features, benefits, and target audience]
* 'service_pricing' (Number): [Enter the price of the service in USD]
* 'service_image' (Image): [Suggest an appropriate image or describe the ideal image for the service page]
* 'service_call_to_action' (Text): [Craft a call to action encouraging visitors to learn more or book the service (e.g., 'Get a Free Quote', 'Book Now')] Generate this content in a way that is engaging for the reader, easy to understand, and optimized for SEO. Focus on addressing common pain points of potential customers. The service is 'Digital Marketing Strategy'.

Output the content in a JSON format, suitable for direct import into ACF, like this:

```json
{
"service_title": "Generated Service Title",
"service_summary": "Generated Service Summary",
"service_description": "Generated Service Description",
"service_pricing": 999,
"service_image": "URL to an appropriate service image",
"service_call_to_action": "Generated Call to Action"
}
```
Prompt 2
Create content for a new blog post based on the following ACF fields:

* Field Group: 'Blog Post'
* 'blog_title' (Text): [Create an engaging title for a blog about 'best SEO practices for small businesses'.]
* 'blog_author' (Text): [Author name is 'Jane Doe']
* 'blog_content' (WYSIWYG Editor): [Write a detailed blog post of approximately 500 words, using headings and subheadings. Cover keyword research, on-page optimization, link building, and content marketing. Include practical examples and actionable tips that small businesses can implement immediately.]
* 'blog_tags' (Text): [Suggest 3-5 relevant tags for the blog post, separated by commas.]
* 'blog_featured_image' (Image): [Suggest a stock image description that would be suitable as a featured image for the blog post.]

The expected output should be a well-structured blog post formatted for a WYSIWYG editor (including HTML tags like , , , , etc.). Additionally, provide the suggested tags as a comma-separated string and the image description separately. The tone of the blog should be friendly, informative, and encouraging.
Output should be structured as JSON:

```json
{
"blog_title": "...",
"blog_author": "...",
"blog_content": "...",
"blog_tags": "tag1, tag2, tag3",
"blog_featured_image": "..."
}
```