delete
Forum Replies Created
-
Is there a timeline for the next release or should I revert to an older version as well?
Forum: Fixing WordPress
In reply to: If the_excerpt() is blank?Was able to figure it out after some more browsing… For those interested in the same here is what mine looks like:
<?php if (!get_the_excerpt()) { ?> <!-- show nothing if no ex <?php } else { ?> <blockquote> <?php the_excerpt(); ?> </blockquote> <?php } ?>Somebody else might have a better way to do this, but this works for me right now.
Forum: Fixing WordPress
In reply to: Menu w/ Subs InlineHow does that affect how WordPress displays the menu?
Forum: Everything else WordPress
In reply to: Export all content blog to PDFI’m also looking for the same thing. I need to export all posts to a PDF. Is there a plugin that can do this? I know there are several that can do one at a time.
Forum: Fixing WordPress
In reply to: the_excerpt show nothing if noneThat did it, thanks. However, now it is adding a <br / where the excerpt would be if there is none.
Forum: Themes and Templates
In reply to: Not all of my comments have a white backgroundThat is because the comment image being used is 10000px in length and you have more comments then that… It should technically be cut into two smaller images. Just like the top graphic for the comment is cut there should be a middle graphic and then a footer graphic. Or if you don’t want/know how to mess with the css you could technically open that image and extend the length (remember, the larger you make it the bigger the file size and loading time will be).
Forum: Themes and Templates
In reply to: Unlink Category ParentI was able to find the category link code. For others it can be found in ./wp-includes/classes.php
Starts around line 637. I just added an if statement for
$category->parentand removed all the link tags. Basically just set it to$link = $cat_name;Forum: Plugins
In reply to: Dynamic drop-down menu.I would also be interested in the files linked above if anybody has them.