The link I posted is one of the category pages.
Thanks!
]]>The feed is apparently working (per the stats) but I don’t know where the received content is going or how to show it on the opt-in page. I can find only installation info, not usage info, on www.ads-software.com.
Any help?
Thanks,
Phil
https://www.ads-software.com/plugins/rss-post-importer/
]]>I have recently installed the Freak theme and I am looking for a way to remove the feature image thumbnail and the post excerpt when a list of posts is retrieved and displayed from a category link. My goal is to only display the titles of the posts.
Is this at all possible?
]]>https://www.ads-software.com/plugins/testimonials-widget/
]]>I’ve stared at various help pages on how to achieve this and came up with the following that I put onto my child’s contents.php. This coding (no surprise…) doesn’t work. Happily, it isn’t causing any blank page to appear, but it is also continues to show one single post at a time on the archive pages rather than a list of titles.
<?php // fix for child contents.php
if ( is_category() ) : // Only display Titles only for Category ?>
<div class="entry-summary">
<ul>
<?php if ($posts) : foreach ($posts as $post) : start_wp(); ?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a> <small>(<?php the_date(); ?>)</small></li>
<?php endforeach; else: ?>
<li><?php _e('There are no posts matching your criteria. Please try again using the search box on the sidebar.'); ?></li>
<?php endif; ?>
</ul>
<p id="prev-next"><?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?></p>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'twentytwelve' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
Can someone please direct me to where I can go to find out how to make this change?
Here is an example of a category page: ../blog/category/food-drink/cookbooks-etc/saveur-review/
Thank you for any light you can shed on this.
-E Morris etherwork dot net slash blog <- purposely left unlinked in an attempt to keep spammers at bay.
]]>https://www.ads-software.com/support/topic/showing-just-titles-in-archive-and-categories
At this point, I am seeing zero content when going to the archive page on my child of twenty twelve theme
I foolishly imagined that I could add the following to the child’s content.php but this (of course it did) caused the whole blog to display zero content below the blog header.
<?php if ( is_archive() ) : // Display titles only ?>
<ul>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a> <small>(<?php the_date(); ?>)</small></li>
</ul>
<?php endif; // is_archive() ?>
Could someone point to a page that explains how to use functions.php in a child theme?
Alternatively, how do I get the child to use the twenty twelve archive.php?
-E Morris, etherwork dot net slash blog (purposely unlinked in an attempt to keep spammers at bay)
]]>Thanks
]]>I’m not real strong with PHP but I’m good at following directions! Thanks for any help!
]]>Why do I only see the Titles and not the whole post?
]]>