Postly.ai Social Amplification
Automatically generate and schedule 3 social posts when a Projects post is published.
Uses Anthropic AI for caption generation and Postly.ai for scheduling.
Anthropic API key is managed in Settings → AI API Keys.
Schedule Existing Content
Run Social Amplification for existing projects posts. Choose date range or select specific posts.
AI Knowledge Documents for Social Post Generation
/wp-content/ai-knowledge/
brand-core.md
vocabulary.md
social-media.md
social-media-gmb.md
Block direct HTTP access to ai-knowledge files
Securiting your AI Knowledge docuemnt
/home/domain.com.au/public_html/wp-content/ai-knowledge/.htaccess
# Block all HTTP access — files are read by PHP directly from disk, not via HTTP
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
/home/domain.com.au/public_html/.htaccess
# Block direct HTTP access to ai-knowledge files
RewriteRule ^wp-content/ai-knowledge/ - [F,L]
RewriteRule ^wp-content/ai-knowledge/.+ - [F,L]
#BEGIN WordPress