Metode ini sebenarnya bisa dilakukan menggunakan plugin Activity Pub tapi karena keterbatasan resources server, saya mencoba meminimalisir penggunaan plugin dengan menggunakan kode pendek seperti yang tertera dibawah ini dan dimasukkan ke dalam file function.php function send_to_mastodon($post_ID) { $post = get_post($post_ID); $post_url = get_permalink($post_ID); $post_title = get_the_title($post_ID); $post_excerpt = get_the_excerpt($post_ID); $post_content = $post->post_content; $mastodon_url = 'https://mastodon.social/api/v1/statuses'; Selengkapnya »
↧