is it possible to somehow summarize previous matches, to see how many games they played, how many won, draw and lose they have and how many goals they scored?
Thanks
]]>Currently, I want to drive people to the “Episodes” category for posts to view the most recent episode, and previous episodes below it.
WordPress is auto-summarizing posts in that category, though. Currently, you can’t see the actual podcast in the category page, but just a compressed version of the formatted text of the post.
Category page: https://www.probonoradio.com/category/episodes/
Individual post: https://www.probonoradio.com/2016/08/26/live-in-the-lounge-november-19-2015/
How can I have the Category page show full posts, instead of summaries? I’ve looked under “Writing,” “Reading,” and “Customize” options in the dashboard and had no luck.
]]>In it I make posts on the deliveries, charters, and instruction that do under my USCG master ticket.
I have the owners and crew make comments on the posts as a method of feedback.
Would like to have a plugin that would list all comments onto a single page of the site, so some one could scroll through the comments.
Any body know of anything out there that would do this?
]]>I’m having trouble creating a summary of the post that appears instead of the full post. I’ve done some research and other users have resolved this by changing “the_content()” to “the_excerpt()” in the index.php file.
The problem is that my index.php does not have “the_content()” anywhere! Am I looking in the wrong spot? I’m using Godaddy’s built-in WordPress capability and using the “Sparkling” theme. The whole of the index.php code is short, so I’ve pasted it below…
—-
<?php
/**
* The main template file.
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
* Learn more: https://codex.www.ads-software.com/Template_Hierarchy
*
* @package sparkling
*/
get_header(); ?>
<div id=”primary” class=”content-area”>
<main id=”main” class=”site-main” role=”main”>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( ‘content’, get_post_format() );
?>
<?php endwhile; ?>
<?php sparkling_paging_nav(); ?>
<?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>
</main><!– #main –>
</div><!– #primary –>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I’d like to ask if there’s a plugin for putting up 5 or more posts, summarized and with a picture, as your home page? Something close to nRelate, which I already use in my side bar. However I like to use my home page to display several summarized versions of my most recent posts.
Thanks for your help in advance,
whitelight
I have been trying to show a summary of my site’s post by following the instructions given by the WordPress Codex. I want my posts to automatically show as summaries on the main page. However, it does not seem to work, and I was hoping someone could help me with this? I cannot find “the_content()” tag in my index.php file, which is where most the instructions seem to say it should be. I did find it in my content.php file though, and changed it to “the_excerpt()”, with no apparent effect…
Here’s two possible ways to show a summary, rather than full content of posts on a site main page:
Use the Quicktag <!–more–> in your posts, and it will display the text of the post up to that point, and then provide a link, such as “Continue reading…”, to allow the reader to see the complete post. The article, Customizing the Read More, discusses changing the text (e.g. Continue reading…) of the link.
Change your theme’s index.php Template to use the Template Tag, the_excerpt(), instead of the_content().
https://codex.www.ads-software.com/FAQ_Layout_and_Design
Here is the code for my theme’s index php file:
get_header(); ?>
<div id="primary" class="site-content">
<div id="content" role="main">
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php twentytwelve_content_nav( 'nav-below' ); ?>
<?php else : ?>
<article id="post-0" class="post no-results not-found">
<?php if ( current_user_can( 'edit_posts' ) ) :
// Show a different message to a logged-in user who can add posts.
?>
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'No posts to display', 'twentytwelve' ); ?></h1>
</header>
<div class="entry-content">
<p><?php printf( __( 'Ready to publish your first post? <a href="%s">Get started here</a>.', 'twentytwelve' ), admin_url( 'post-new.php' ) ); ?></p>
</div><!-- .entry-content -->
<?php else :
// Show the default message to everyone else.
?>
<header class="entry-header">
<h1 class="entry-title"><?php _e( 'Nothing Found', 'twentytwelve' ); ?></h1>
</header>
<div class="entry-content">
<p><?php _e( 'Apologies, but no results were found. Perhaps searching will help find a related post.', 'twentytwelve' ); ?></p>
<?php get_search_form(); ?>
</div><!-- .entry-content -->
<?php endif; // end current_user_can() check ?>
</article><!-- #post-0 -->
<?php endif; // end have_posts() check ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
]]>I have issue here with Custom Field summarize shortcode.
I need to show thumbnail image on my client website. and this’s my current shortcode :
[summarize-posts post_type=”product” order=”ASC” orderby=”post_date”]
[+product_images:to_image_tag+]
[/summarize-posts]
that shortcode will show a huge image (original image) from custom field. I need to show the thumbnail image. I still need the original image to show the lightbox.
any clue for this issue ? there’s no way for client to upload 2 images (original and thumbnail)
Thanks!
https://www.ads-software.com/extend/plugins/custom-content-type-manager/
]]>site url: https://www.leannemullen.com/test
theme: https://www.dessign.net/phototheme/
If you go onto the homepage you can see that the text under the thumbnails on the homepage is only a percentage of the actual text in the post, with a suffix of “…”
There seems to be some code in the theme that making the homepage post thumbnails only display a percentage of the post text, I would like to display all the text in the post (which is just a few words in most cases).
Thanks in advance I would really appreciate any ideas…
By index I mean the front page of the blog that lists ALL posts. I would like to summarize these, and then to view the full post the user would have to click on the post’s name to go to it’s separate page.
I see the options offer the capability of doing that for RSS feeds subscribers, but I don’t see anything for the blog itself.
Thanks
]]>I would like to use it in the sidebar of my page. Like a part of the picture and the first three words or something like that.
Any ideas?
]]>