Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created July 1, 2017 18:12
Show Gist options
  • Save Kamilnaja/2c93490a214b73f3d530250d64f65270 to your computer and use it in GitHub Desktop.
Save Kamilnaja/2c93490a214b73f3d530250d64f65270 to your computer and use it in GitHub Desktop.
<?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