Of course, it's the career blogger's nightmare - those who keep reminding us that the title is the most important part of the piece, your one chance to capture the eyes of potential readers.
Some content will always need titles: microcast episodes, parts of a series, or more topical long form offerings. It is these that will form the bait, but the rest that will get people to subscribe or, just maybe, keep coming back to your site.
We don't think in titles, we think in ideas.
Sometimes they need announcing but, usually, the idea alone is enough.
Comments
On comments and webmentions
In reply to:
...There seems to be a lot of inconsistency in the way webmentions and microformats are handled or implemented between different platforms, especially Known and WordPress.
I've had to dive into the database on a number of occasions to add webmention as the comment type because it has not been detected properly.
While we can do this we certainly shouldn't have to.
Comments
There, I've said it. Not that I'm the first and certainly won't be the last.
CSS should let you choose what to do with something based on what's inside it but this isn't possible. We can only style an element based on what contains it and not the other way around.
To introduce a bit of consistency with the look of the blog I needed to reduce the bottom margin of <p>
tags that contained the "read more" link but there is nothing to distinguish these from any other <p>
tag except what they contained.
As CSS does not provide a means to do this I needed another solution.
Step up jQuery which uses the .has
selector allowing use to target an element if it has a conditional item within it.
Here is a quick jQuery function that apples the styling for the "shrink-p" class to a <p>
tag if it contains a link with the "more-link" class:
<script>
jQuery(function ($) {
$( "p" ).has( "a.more-link" ).addClass( "shrink-p" );
} );
</script>
I love not always needing to worry about post titles as well. I can just type the thing I'm thinking about and click "Publish".
@colinwalker I also loved this line:
Occurred to me it would've been a great title ;-)
@colinwalker YES!
Not only should most ideas stand alone without a flashy title, but indeed the over-(ab)use of titles could distract the signal through unnecessary noise.