WordPressの投稿をDiscourseでワンボックスとして公開する
このカスタマイズにより、WordPressの投稿がフォーラムでワンボックスとして公開されます。
このカスタマイズを行う前に、DiscourseにWordPress投稿のURLを追加したときに、フォーラムでワンボックスが作成されることを確認してください。
function wpdc_custom_publish_format_html( $input, $post_id ) {
$permalink = get_the_permalink( $post_id );
ob_start();
echo $permalink;
$output = ob_get_clean();
return $output;
}
add_filter( 'discourse_publish_format_html', 'wpdc_custom_publish_format_html', 10, 2 );