pilcrow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: export/import select posts, wp to wpI’d like to know, too. I want to import only the posts that were published after a certain date.
Forum: Fixing WordPress
In reply to: Adding links to image captionsSure. Sorry for being cryptic!
Don’t use the image editor for captions at all. Instead, insert the image the usual way, and below it (in the post editor), type a paragraph with the photo credit link. Then switch over to html view and add
<p class="img-cap">before, and</p>after, the credit.Now, in your stylesheet add something like
p.img-cap { margin-top:-1.5em; font-size: .75em; font-style:italic; text-align:right; padding:2px 0 0; }You’ll probably want to adjust the margins & padding to suit your own theme; this is what worked with mine. Sorry my site’s not live yet, or I’d show you it in action.
Forum: Plugins
In reply to: [Plugin: Better Blogroll] change sort orderHah! I just realized you can do it directly in your theme, because wp_list_bookmarks() allows you to order randomly and limit the number of links shown. So…
<?php wp_list_bookmarks('categorize=1&title_before=<h3>&title_after=</h3>&orderby=rand&limit=4'); ?>Of course, a plugin would be nicer. 🙂
Forum: Plugins
In reply to: [Plugin: Better Blogroll] change sort orderGreat plugin, but I agree with arudd that it would be nice to be able to sort the links by category. I suppose one quick solution would be to have multiple widgets, each giving links from a single category, just like you can have multiple text widgets. Any way to enable that?
Forum: Fixing WordPress
In reply to: Adding links to image captionsWhoa! How did anyone ever discover that? I’m impressed! 🙂
My solution for now is simply to style p.image-caption so that it looks like an actual caption. I’m not thrilled with this, but (no offense) at least it’s quick & easy. I’ll experiment with yours, though. Thanks for posting it.
Forum: Fixing WordPress
In reply to: Adding links to image captionsThe html editor doesn’t seem to work either. Any other suggestions?
Forum: Everything else WordPress
In reply to: [solved] Slug as stringFabulous — just what I needed!
Forum: Fixing WordPress
In reply to: Cannot modify header info<gasp!> That was it! Thank you so much! I’d been looking at the inline-uploading and pluggable-functions files. Now I get it!