I am using the Posts Loop shortcode with the ‘default-loop.php’ template. Currently, the loop is working fine, except that it is showing the post excerpt. I need it to show the post content instead (the excerpt field for these posts are already filled with text that is being used for a different purpose).
I thought it would be as easy as exchanging:
`<div class=”su-post-excerpt”>
<?php the_excerpt(); ?>
</div>`
with:
`<div class=”su-post-content”>
<?php the_content(); ?>
</div>`
…which I found in the single-post.php template. However, this broke the page. There is only text in the content areas, so I’m sure there is something programmatic that I am missing.
Can anyone help?
https://www.ads-software.com/plugins/shortcodes-ultimate/
]]>My blog theme has a layout in index.php with two columns (left: posts, right: sidebar) and below them a block with full width where I want the related posts to show up. Right now my solution is to insert the plugin code inside the left column (near posts loop) and then move the block down with jQuery .appendTo() inside a wrapper down below while the page is loading. The related posts are hidden and then fades in with jQuery when the page is loaded to avoid flashing when it appends.
This solution doesn’t seem optimal and I think it causes some problems for visitors with slower connections right now and/or might make it harder for a sticky sidebar to understand the page height.
Do you have another suggestion how to solve this? Can I maybe insert the plugin code in the bottom where I want it and use a global $post variable as an argument? Or a better way with jQuery?
https://www.ads-software.com/plugins/contextual-related-posts/
]]>But it still doesn’t work.
I get a javascript error :
response.contains is not a function
And indeed the ajax request doesn’t send me the expected json object.
Thanks,
https://www.ads-software.com/plugins/wpdiscuz/
]]><article class="even"></article>
<article class="even"></article>
<article class="odd"></article>
<article class="odd"></article>
<article class="even"></article>
<article class="even"></article>
<article class="odd"></article>
<article class="odd"></article>
https://www.ads-software.com/plugins/posts/
]]><?php query_posts( 'posts_per_page=3' ); the_post(); ?>
<ul class="news">
<li><strong><?php the_date(); ?></strong>
<h4><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h4>
<?php the_excerpt(); ?>
</li>
</ul>
<?php wp_reset_query(); ?>
display loop of 3 posts. Now shows up only 1 post.
Can somebody help me?
Thanks!
Here is my code: pastebin.com loop code
Here is the code for category posts loop, it loops all category posts and the opened one, i do not want to loop opened post again
<?php $catid = the_category_ID( false ); ?>
<?php $postCount = 1; $loop = new WP_Query( array( 'tax_query' => array(array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $catid
)), 'post_type' => 'post', 'posts_per_page' => 15 ) ); if ($loop->have_posts()) { ?>
]]>