How to Display Any RSS Feed on Your WordPress Blog

<h2><?php _e( ‘Recent news from Some-Other Blog:’, ‘my-text-domain’ ); ?></h2> <?php // Get RSS Feed(s) include_once( ABSPATH . WPINC . ‘/feed.php’ ); // Get a SimplePie feed object from the specified feed source. $rss = fetch_feed( ‘http://www.wpbeginner.com/feed/’ ); if ( ! is_wp_error( $rss ) ) : // Checks that the object is created correctly // […]

Check has post next and previous link

<?php $previous_post = get_adjacent_post(false, ”, true); $next_post = get_adjacent_post(false, ”, false); ?> <ul> <?php if ($previous_post): // if there are older articles ?> <li class=”prev”>Previous post: <a href=”<?php echo make_href_root_relative(get_permalink($previous_post)); ?>”><?php echo get_the_title($previous_post); ?></a></li> <?php endif; ?> <?php if ($next_post): // if there are newer articles ?> <li class=”next”>Next post: <a href=”<?php echo make_href_root_relative(get_permalink($next_post)); ?>”><?php […]

How to Exclude Sticky Posts from the Loop in WordPress

How to take away the Sticky Ability of the Post When you are displaying most recent posts in a tab, you do not want the sticky posts to stay sticky. If you do not remove the sticky features, the recent posts area would be useless as all of your sticky posts will crowd this area. […]

get_posts() with Taxonomy

$args = array( ‘post_type’ => ‘POST_TYPE’, ‘tax_query’ => array( array( ‘taxonomy’ => ‘TAXONOMY_NAME’, ‘field’ => ‘slug’, ‘terms’ => array( ‘YOUR_TERMS’ ), ‘operator’ => ‘AND’ ) ) ); get_posts( $args ); for more information refer the link http://codex.wordpress.org/Function_Reference/WP_Query#Taxonomy_Parameters

How to create posts under the post

I have created plugin to create a post under the post but this will work only with custom post type and custom taxonomy what i have created with this plugin. Plugin url wordpress.org/plugins/add-sub-posts