• when you say:

    Enter the following code inside the loop

    What exactly id “The Loop” you are talking about???
    Please be clear.

    Thanks.

Viewing 1 replies (of 1 total)
  • Plugin Author Airton Vancin Junior

    (@airtonvancin)

    Hi Jhollman,

    What I really meant was

    <?php
    
    // The Query
    query_posts( $args );
    
    // The Loop
    while ( have_posts() ) : the_post();
    
        video_destacado();
    
    endwhile;
    
    // Reset Query
    wp_reset_query();
    
    or
    
    // The Query
    query_posts( $args );
    
    // The Loop
    while ( have_posts() ) : the_post();
    
        echo get_video_destacado();
    
    endwhile;
    
    // Reset Query
    wp_reset_query();
    
    ?>
Viewing 1 replies (of 1 total)
  • The topic ‘Better Installation instructions’ is closed to new replies.