Query Anything On WordPress Anywhere

Query Anything On WordPress Anywhere

By OutsourcedContent — on August 27, 2017 <?php $args = array(       ‘posts_per_page’   => ‘3’,       ‘post_status’   => ‘publish’,     ); $recent_posts = wp_get_recent_posts( $args ); // Loop each post foreach( $recent_posts as $recent ) {   echo get_the_title($recent[“ID”]);   echo $recent[“post_content”]; } wp_reset_query(); ?> Refer the WP_Query class reference for a complete list of arguments. Another Approach <?php …

Display First Few Characters Of A WordPress Post Outside The Loop

Display First Few Characters Of A WordPress Post Outside The Loop

By OutsourcedContent — on August 27, 2017 <?php echo apply_filters( ‘the_content’, wp_trim_words( strip_tags( get_post_field(‘post_content’, $recent[“ID”]) ), 55 ) ); ?> where$recent[“ID”]is of the ID of the post. If you are already querying the post and already have a WP_Post object, you can simply use this: <?php echo apply_filters( ‘the_content’, wp_trim_words( strip_tags( $recent[“post_content”] ), 55 )…

Load CSS and JS the right way

Load CSS and JS the right way

By OutsourcedContent — on August 27, 2017 /** * Load CSS and JS the right way * * @since  1.0 * @refer  https://developer.wordpress.org/reference/functions/wp_enqueue_style/#comment-340 */ function firerooster_load_css_and_js() {   // Load Boostrap CSS   wp_enqueue_style( ‘bootstrap-css’, get_template_directory_uri() . ‘/includes/bootstrap4/css/bootstrap.min.css’ );      // Load style.css   wp_enqueue_style( ‘style’, get_stylesheet_uri() );      // Load Boostrap JS   wp_enqueue_script( ‘bootstrap-js’, get_stylesheet_directory_uri() . ‘/includes/bootstrap4/js/bootstrap.min.js’, array(‘jquery’), ‘1.0’,…

Escaping Text With Links In WordPress – The Right Way

Escaping Text With Links In WordPress – The Right Way

By OutsourcedContent — on August 29, 2017 Escaping a text with links can be replaced if escaped with __() during localization. This not ideal since the person writing the localizing file could replace links with their own. The proper way to do this is explained with an example below: sprintf( __( ‘If you like this…

Embed YouTube Videos On Bootstrap 4 Popup Modals With AutoPlay

Embed YouTube Videos On Bootstrap 4 Popup Modals With AutoPlay

By OutsourcedContent — on August 30, 2017 Bootstrap 4 does not natively support embedding videos on its modal popup windows. Here is how to embed YouTube videos on modal windows. Code from this Stack Overflow post has been modified for this tutorial. Features Video will start playing once the modal window loads. This can be…