Better Datelines
Lightweight plugin for better dateline management for news sites. Store dateline as a custom meta field instead of putting it in the post content.
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4333 days ago • 1 reviews
Is Better Datelines abandoned?
Possibly abandoned (last update 4333 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
A dateline is a brief piece of text included in news articles that describes where and when the story occurred, or was written or filed, though the date is often omitted. This plugin gives you ability to store datelines as a meta field so you don’t have to include them in your post body.
You can use either [better-dateline] shortcode to insert dateline manually or automatically prepend post content with a dateline. (See Frequently Asked Questions)
If you’d like to check out the code and contribute, join us on GitHub. Pull requests, issues, and plugin recommendations are more than welcome!
Installation
- Upload the
better-datelinesfolder to your plugins directory (e.g./wp-content/plugins/). - Activate the plugin through the ‘Plugins’ menu in WordPress.
- You’ll see a dateline textarea on post edit screen.
Frequently Asked Questions
How do I enable automatic prepending of dateline to the post content?
Put add_filter( ‘better_datelines_prepend_the_content’, ‘__return_true’ ); to your theme’s functions.php
How do I change the format of automatically prepended dateline?
There’s another filter for that: ‘better_datelines_formatted_content’, filter accepts 3 arguments, so to add a filter add_filter( ‘better_datelines_formatted_content’, ‘my_better_datelines_formatted_content’, 10, 3); function my_better_datelines_formatted_content( $formatted_content, $dateline, $original_content ) { // Do something
return $formatted_content; }
Review feed
Changelog
0.1
- Initial Release

