Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Here is the complete version: </p> <pre><code> &lt;div class="homepage-slider-container"&gt; &lt;div class="homepage-slider"&gt; &lt;?php $loop = new WP_Query(array('post_type' =&gt; 'feature', 'posts_per_page' =&gt; -1, 'orderby'=&gt; 'ASC')); ?&gt; &lt;?php while ( $loop-&gt;have_posts() ) : $loop-&gt;the_post(); ?&gt; &lt;a href="#" class="prev"&gt;&lt;img src="&lt;?php echo get_template_directory_uri(); ?&gt;/img/slide-left-arrow.png" alt=""&gt;&lt;/a&gt; &lt;a href="#" class="next"&gt;&lt;img src="&lt;?php echo get_template_directory_uri(); ?&gt;/img/slide-right-arrow.png" alt=""&gt;&lt;/a&gt; &lt;div class="slide"&gt; &lt;?php $url = get_post_meta($post-&gt;ID, "url", true); if($url!='') { echo '&lt;a href="'.$url.'"&gt;'; ?&gt; &lt;div class="homepage-slider-title"&gt; &lt;span class="title-rectangle"&gt; &lt;article&gt; &lt;h3&gt;&lt;?php the_title(); ?&gt;&lt;/h3&gt; &lt;div class="clear"&gt;&lt;!-- Clear --&gt;&lt;/div&gt; &lt;p&gt;&lt;?php the_content();?&gt;&lt;/p&gt; &lt;/article&gt; &lt;/span&gt; &lt;!-- This is the right arrow that is attached to the title rectangle --&gt; &lt;div class="title-rectangle-right_arrow"&gt; &lt;/div&gt; &lt;!-- This is the arrow that is to the right of the title text area --&gt; &lt;img src="&lt;?php echo get_template_directory_uri(); ?&gt;/img/slider-title-right-arrow.gif" class="title-rectangle-further_right_arrow" alt=""&gt; &lt;?php echo the_post_thumbnail('full'); ?&gt; &lt;/div&gt; &lt;?php } ?&gt; &lt;/div&gt; &lt;?php endwhile; ?&gt; &lt;?php wp_reset_query(); ?&gt; &lt;div class="homepage-slider-front_pedestal"&gt; &lt;p&gt;&lt;?php echo of_get_option('slider_front-pedestal', 'no entry'); ?&gt;&lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload