This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function jeherve_custom_related( $atts ) { | |
| $posts_titles = array(); | |
| if ( class_exists( 'Jetpack_RelatedPosts' ) && method_exists( 'Jetpack_RelatedPosts', 'init_raw' ) ) { | |
| $related = Jetpack_RelatedPosts::init_raw() | |
| ->set_query_name( 'jeherve-shortcode' ) // Optional, name can be anything | |
| ->get_for_post_id( | |
| get_the_ID(), | |
| array( 'size' => 3 ) |