Free.ai WordPress Plugin
AI tools for WordPress. Content generation, images, and more.
Free.ai برای وردپرس
تولید محتوای هوش مصنوعی، ایجاد تصاویر، تبدیل متن به گفتار و ترجمه را مستقیماً به سایت وردپرس خود با استفاده از کدهای کوتاه و API REST ما اضافه کنید.
شروع سریع: جاسازی Widget
سریعترین راه برای اضافه کردن هوش مصنوعی به سایت وردپرس شما. این را در هر صفحه ، پست یا ویجت با استفاده از ویرایشگر زنگام بچسبانید:
<script src="https://free.ai/widget.js" data-tool="chat"></script>
این یک رابط گپ هوش مصنوعی را به صفحه شما اضافه میکند. برای مشاهده تمام ابزارهای موجود ، به صفحه widget مراجعه کنید.
کد کوتاه سفارشی) PHP (
Create a WordPress shortcode that calls the Free.ai API. Add this to your theme's functions.php:
function freeai_generate($atts) {
$atts = shortcode_atts(['prompt' => '', 'model' => 'qwen2.5-72b'], $atts);
$response = wp_remote_post('https://api.free.ai/v1/chat/completions', [
'headers' => [
'Authorization' => 'Bearer YOUR_API_KEY',
'Content-Type' => 'application/json',
],
'body' => json_encode([
'model' => $atts['model'],
'messages' => [['role' => 'user', 'content' => $atts['prompt']]],
]),
]);
if (is_wp_error($response)) return 'Error generating content.';
$body = json_decode(wp_remote_retrieve_body($response), true);
return '<div class="freeai-output">' .
esc_html($body['choices'][0]['message']['content'] ?? '') .
'</div>';
}
add_shortcode('freeai', 'freeai_generate');
سپس از آن در هر پست یا صفحه ای استفاده کنید:
[freeai prompt="Write a 100-word product description for organic coffee"]
استفاده از موارد برای وردپرس
- تولید خودکار توصیفات فرای SEO برای مقالات
- تولید تصویر با قدرت هوش مصنوعی برای تصاویر برجسته
- به طور خودکار مقالات را به چندین زبان ترجمه کنید
- افزودن متن به صوت به مقالات
- هوش مصنوعی chatbot برای پشتیبانی از بازدیدکنندگان
- خلاصه محتوا برای مقالات فرم طولانی