Plugin info

Total downloads: 1,319
Active installs: 0
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 2/19/2014 (4333 days ago)
Added to WordPress: 2/19/2014 (11 years old)
Minimum WordPress version: 3.6
Tested up to WordPress version: 3.7.41
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4333 days ago • 1 reviews

22/100

Is Better Datelines abandoned?

Possibly abandoned (last update 4333 days ago).

Compatibility

Requires WordPress: 3.6
Tested up to: 3.7.41
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

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

  1. Upload the better-datelines folder to your plugins directory (e.g. /wp-content/plugins/).
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. 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

No reviews available

Screenshots

  1. Screenshot of edit post screen with a dateline

    Screenshot of edit post screen with a dateline

  2. Screenshot of a post with a dateline

    Screenshot of a post with a dateline

Changelog

0.1

  • Initial Release