uberwensch
Forum Replies Created
-
Also having this problem.
Forum: Plugins
In reply to: Dynamic Content Gallery is "skewy"Looking for an answer to this too.
Forum: Themes and Templates
In reply to: Excluding a category using WP_LIST_CATEGORIESNot sure if this information is of use, but the problem only seems to occur on the home page. When looking at the various category pages (I guess they’re category archives?), the nav bar looks fine.
Forum: Themes and Templates
In reply to: Excluding a category using WP_LIST_CATEGORIESNo, it’s just a one level category that I use to show thumbnails on the frontpage via metadata.
Forum: Themes and Templates
In reply to: Excluding a category using WP_LIST_CATEGORIESBoth 1527 and 1532, though 1532 is the new one that is, for some reason, not working. 1527 excludes just fine.
Forum: Fixing WordPress
In reply to: Cat nav menu bar redirecting to home pageFound the offending problem. As with others, it was Simple Tags.
Forum: Themes and Templates
In reply to: Adding 'more' to the_excerpt in MystiqueMaybe I’ve overlooked something obvious. There is a development in my situation! I took out all the bits and pieces I added and started again, by putting this:
<?php
function new_excerpt_more($more) {
global $post;
return ‘ID) . ‘”>’ . ‘[Go deeper…]’ . ‘‘;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);?>
In functions.php. It doesn’t change anything on the main index, but has changed the search result post previews (i.e. when I search for a tag) to display the manually-entered excerpt and the ‘read more’ tag/link.
So, how do I make whatever change just occurred on the search results occur on the front page? The main index file doesn’t seem to have anything for me to change, because it just calls the post like this:
if (have_posts()):
while (have_posts()):
the_post();
mystique_post();
endwhile;And the only other place I can think of that would be relevant is this, the core.php file.
if($post_settings[‘post_content_length’] == ‘f’): the_content(__(‘More >’,’mystique’));
elseif($post_settings[‘post_content_length’] == ‘e’): the_excerpt();
else:
$word_count = $post_settings[‘post_content_length’];As mentioned above, I have messed around with the post_settings stuff. I’m wondering if I should be adding a the_excerpt thing somewhere on the index.php
Forum: Themes and Templates
In reply to: Adding 'more' to the_excerpt in MystiqueI read all that stuff, and did as it specified, but it’s just not happening. It seems to me that all the infrastructure is there, but the ‘more’ tag is just not displaying.
Thank you for responding though.
Forum: Themes and Templates
In reply to: Adding 'more' to the_excerpt in MystiqueBump.