[Plugin: Events Manager] how to display blog-posts on Events page?
-
Hello,
I have been trying to display my blog posts on my Events page for some time without success. Here is my website: https://msflights.net/I have tried just about everything I could scour up off the internet. Creating templates, reading settings, categories and tons of different codes including
<?php
$args = array(
‘post_type’ => array( ‘post’ ),
‘cat’ => 2,
‘orderby’ => ‘date’,
‘order’ => ‘DESC’,
‘posts_per_page’ => 3,
);query_posts($args);
?>
and
<?php query_posts(‘cat=2’); ?>
and many others without success.
I also made a page-events.php to put in my child theme folder where I have been trying to put in different codes. Most of the codes I use either make the entire page blank, or only show the title of the post in a strange format.
If anyone can help me I’ll send a $5 gift via paypal to the first person that solves my problem to show my appreciation ?? I have been trying to resolve this for weeks…so it is quite frustrating ??
Thanks!
- The topic ‘[Plugin: Events Manager] how to display blog-posts on Events page?’ is closed to new replies.