Yeni kod:
add_filter( 'the_content', 'qot' );
function qot( $content ) {
if( !is_singular() )
return $content;
$paragraphAfter = 3;
$content = explode ( "

", $content );
$new_content = '';
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => 1,
'orderby' => 'rand'
);
$my_random_post = new WP_Query ( $args );
while ( $my_random_post->have_posts () ) {
$my_random_post->the_post ();
for ( $i = 0; $i < count ( $content ); $i ++ ) {
if ( $i == $paragraphAfter ) {
$new_content .= '
';
$new_content .= ''.get_the_title().'';
$new_content .= '
';
}
$new_content .= $content[$i] . "

";
}
}
return $new_content;
}


Örneğin bu kod ile 3. paragraftan sonra diğer yazılardan rastgele bir tanesini gösterebilirsin.