I am using the all-in-one event calendar plugin and it provides shortcodes for the user to enter into a post and then it will display the event information. The shortcode is [ai1ec events_limit=”3″]. My Loop is below.
<?php
$eventArgs = array(
'category_name' => 'events_home'
);
$eventQuery = new WP_Query( $eventArgs );
if ($eventQuery->have_posts()) : while ($eventQuery->have_posts()) : $eventQuery->the_post();
?>
<?php the_content(); ?>
<?php
endwhile; endif; wp_reset_postdata();
?>
The output result only shows one event and then three dots “…”, which I am assuming means the content the being shortened. Is there a way to NOT limit the_content(); I have tried:
<?php echo get_the_content(); ?>
But that only prints out the shortcode text.
Summary: Is there a way to NOT limit the_content();
Is your default setting shows content summary?
In this page from WordPress Developer I’ve found this: