You could use the the_content
filter, like below (untested). The only thing is, that will add the date pretty much everywhere that your posts show up on your site, unless you add some logic to determine where it’s being called from. If that’s OK, give it a shot.
add_filter('the_content', 'add_post_date');
function add_post_date($content) {
global $post;
return get_the_time('F j - ', $post->ID) . $content;
}
Related Posts:
- Stop WordPress Wrapping Images In A “P” Tag
- How to get ‘post_content’ without stripping tags?
- Get content from one page and show it on another page
- Removing any and all inline styles from the_content()
- How to disable content pagination?
- Modify ‘Read more’ link adding a new class
- Adding a div class or id inside the_content()
- Divide Post content into separate divs for every 500 characters (or any other character counts)
- Post content being duplicated by the_content();
- How can I extract the URL of a link from a post?
- Content editor creating blank paragraphs in spaces and creating   in the_excerpt
- How to add custom content (text/image) at start of content (IN content ie the same line)
- Testing for post title in ‘if/else’ statement returns no content
- Display the Content of a Post with qTip2
- How to show video from specific category on sidebar?
- custom post type grid with content in lightbox [closed]
- Uppercase first sentence in every post
- Why content_arr[‘extended’] removes paragraph tags?
- Modify Image Source With The_Content Filter?
- How to add pagination in between post and comments?
- Show the content that is after the excerpt using child theme
- get query() without post content?
- How to show full post?
- Filter only the text in the_content
- How to check if single.php has already called the_post_thumbnail function
- How to disable the_excerpt from one post
- Add div before the first paragraph the_content [closed]
- the_content() Not Grabbing All Content
- Adding if statement into the_content()
- why my urdu text is not aligned properly when written in wordpress blog post?
- How do I display main query posts in random order using add_filter
- How to exclude native lazy loading from first image in post content?
- How to limit wordpress the_excerpt() dynamically
- how can i take wordpress post as embed?
- if CPT content is empty then
- Find post tags words in post content and link them to tag URLs
- Add review box by function at top or bottom of content
- Add Image Before Posts Entry Title
- Showing content from WordPress ruins page CSS using WP_Query, without, content does not show
- Assign custom class to post content images
- the_content() not displaying the full post
- Stripping tag from elements in post
- How add class the_content();?
- Where is the old post permalink slug stored?
- Keyboard shortcut for updating a page or post?
- How to Change Order of Posts in Admin?
- Manipulate post category after time
- Categories box not showing on post edit pages
- how to enable different number of revisions for different blogs when using WPMU?
- Removing the title attribute from links in the post content
- Some posts returning 404 instead of displaying post
- Custom function for “Submit for Review” hook
- If specific user role then sticky post
- Link post permalinks to subdirectory /post
- Submitting POST data to a custom page template triggers a 404, why?
- How do I add a custom body class to the admin area of a page?
- Custom WP_QUERY $args
- Can’t get the_content of the parent page from its single post?
- How do I Show ALL posts for Catagories and Tags?
- How to prevent duplicate posts with wp_insert_post on single.php?
- It is possible to add extra button under the ‘publish’ button in the post of wordpress? and how?
- 404 error on default post type and default taxonomy fronted page
- Internal post link creates comments on its own
- Can’t set Post ID properly
- Display post changelog in post
- Change post-slug using wordpress API? Change permalink of a post using php / jquery?
- How to create a second posts page which client can update
- Form to post new post with custom taxonomies
- All Posts Linking to Author Posts directly
- How to add convenient buttons for new custom post statuses
- Display value of custom field at the beginning of a post
- Get current post’s nav menu name (term name)
- Get latest author posts inside the loop
- Post is in descendant category not working in home.php
- How to show 3 most recent/viewed posts in a special tiles on home page using wordpress?
- Approve modified posts
- How to repeat a loop after 4 posts [duplicate]
- How to show beneath posts the full category path?
- User friendly news section in WordPress without using posts
- How to assign a post to a post parrent?
- Bulk update published posts date randomly using wp-cli?
- SQL query: select duplicate posts – but using duplicate meta [duplicate]
- Sync All Post Type Tag
- How do I set content in my pages so that it remains permanent while blog posts are added below?
- how to redirect page after delete post inside a post page?
- Permalink base only for posts
- WordPress URL question
- Custom fields in normal posts
- Modify WordPress loop after it has been run
- How to get next_posts_link working with a customised page
- Ordering posts alphabetically by meta keys and title
- Loop doesn’t display posts. It displays a link to the home page instead
- WordPress Post Grid
- Why I getting only 1 post?
- Choose options via url
- Custom Post Type Pagination 404 Error (if paged>=2) [duplicate]
- Show all posts in category
- Creating a new Sortable Column in WordPress Admin
- What function does the loop of displaying posts?
- How to get post ID after removing that post?