Created
July 1, 2017 18:12
-
-
Save Kamilnaja/2c93490a214b73f3d530250d64f65270 to your computer and use it in GitHub Desktop.
This file contains 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 $myquery = new WP_Query( 'category_name=menu-items' ); ?> | |
<?php while ( $myquery->have_posts() ) : $myquery->the_post(); ?> | |
<li> | |
<?php the_post_thumbnail(); ?> | |
<a href="#<?php the_permalink() ?>"> | |
<?php the_title(); ?> | |
<?php the_content(); ?> | |
</a> | |
</li> | |
<?php endwhile; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment