WORDPRESS autoposting

mtop

Registered Member
Joined
Aug 8, 2018
Messages
77
Reaction score
32
Hi all,

im looking for any plugin that will autopost article on my page using niche that i give.

Let say i give Donald trump and all post around Donald trump to copy paste on my website also if is possible to select couple website which need to be copied the article and posted on my site.
thank you all
 
Hi all,

im looking for any plugin that will autopost article on my page using niche that i give.

Let say i give Donald trump and all post around Donald trump to copy paste on my website also if is possible to select couple website which need to be copied the article and posted on my site.
thank you all
in my opinion, write your blog post as usual & open the option menu, enter the amount of time in second that you like the blog automatically post time b/w posts,
 
Hi all,

im looking for any plugin that will autopost article on my page using niche that i give.

Let say i give Donald trump and all post around Donald trump to copy paste on my website also if is possible to select couple website which need to be copied the article and posted on my site.
thank you all
the best plugns for autopost, mashshare, social snap, and the third is sassy social share & grow socail by mediavine
 
If you do not find any suitable plugins, I think it will be easier to build a custom script with the help of OpenAi - both for the script that will post on WordPress and creating the posts on a given topic.
 
Hi all,

im looking for any plugin that will autopost article on my page using niche that i give.

Let say i give Donald trump and all post around Donald trump to copy paste on my website also if is possible to select couple website which need to be copied the article and posted on my site.
thank you all

Any of these plugins:





 
Don't want to be a jerk, but I would recommend you to check the OpenAI API (https://platform.openai.com/docs/api-reference/making-requests) and write your own custom script. Handling via REST API is very easy, e.g.:

Code:
<?php

$openaiApiKey = 'YOUR_OPENAI_API_KEY'; // Replace with your actual API key
$url = 'https://api.openai.com/v1/chat/completions';

$data = [
    'model' => 'gpt-4-vision-preview',
    'messages' => [
        ['role' => 'user', 'content' => 'Tell me something about Donald trump']
    ],
    'temperature' => 0.7
];

$options = [
    CURLOPT_HTTPHEADER => [
        'Content-Type: application/json',
        'Authorization: Bearer ' . $openaiApiKey
    ],
    CURLOPT_POSTFIELDS => json_encode($data),
    CURLOPT_RETURNTRANSFER => true
];

$ch = curl_init($url);
curl_setopt_array($ch, $options);
$response = curl_exec($ch);
curl_close($ch);

echo $response;
?>

This is a ready-to-use and fully working PHP code that can be used as a base for your WordPress plugin. The code above uses the latest OpenAI's GPT-4 Turbo model.
 
Last edited:
Hi all,

im looking for any plugin that will autopost article on my page using niche that i give.

Let say i give Donald trump and all post around Donald trump to copy paste on my website also if is possible to select couple website which need to be copied the article and posted on my site.
thank you all

This is one of the best plugins developed for automatic posting:
https://codecanyon.net/item/wordpress-automatic-plugin/1904470
If you want, I can upload this one for free here.
 
Back
Top