Description
Narwhal magically turns most themes into powerful microblogs. It is lightweight, simple, and it will take on your theme’s look and feel (you may need to tweak with your own CSS). It adds a front-end new post area on your blog’s main page (or other pages if you so desire).
Narwhal is a modified version of Posthaste by Jon Smajda.
A few notes about the plugin’s behavior:
- Select which fields you want to appear in the form and what pages you want the form to appear on. Settings are in “Settings -> Writing -> Narwhal Settings.”
- If you leave the “Title” field blank, it takes the first 40 characters of the post content and makes that the title.
- If you leave the “Category” box at its default setting it posts to your default category. However…
- If you have a category named ‘asides’ it will put posts with empty titles into the ‘asides’ category even if you do not explicitly specify the ‘asides’ category in the dropdown. You can then style them as asides.
- The included CSS is deliberately simple. If your theme already styles forms, it will probably inherit your theme’s styling. If you want to customize the appearance of the form, just customize your own css files. For example, target
#narwhalForm
in your custom CSS to change the width. - Your blog must have at least one post for the form to appear.
Installation
Just upload the narwhal-microblog
directory to /wp-content/plugins/
and activate. You will find some basic settings within your Writing settings.
FAQ
-
Can I customize the automatic ‘asides’ behavior?
-
The plugin will automatically make any post categorized as aside, an aside. You can change the category name at the top of the narwhal-microblog.php file.
-
Help! I activated the plugin but the form isn’t showing up!
-
It’s possible your theme has
get_sidebar()
placed before the loop at the top of your theme (Most themes callget_sidebar()
after the loop, but some do it before). This plugin attaches the form at the start of the loop, which usually works fine. In order to prevent the “Recent Posts” widget (or any other widgets which call multiple loops) from also causing the form to display, the plugin deactivates the form onceget_sidebar()
is called. So ifget_sidebar()
runs first, the form won’t appear in the “real loop” either.If you’re willing to edit your theme’s
index.php
file, the fix is easy. Just place the following where you want the form to appear on your page (probably right before the loop):<?php if(function_exists(posthasteForm)) { posthasteForm(); } ?>
Another option, if you have no other loops called on a page and would rather edit the plugin instead of your theme, is to comment out the action that removes the loop at
get_sidebar()
. Find the following line near the bottom of the plugin:add_action('get_sidebar', removePosthasteInSidebar);
and comment it out by adding two slashes at the beginning of the line:
//add_action('get_sidebar', removePosthasteInSidebar);
Reviews
Contributors & Developers
“Narwhal Microblog” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “Narwhal Microblog” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
2.2
- Fixed new PHP warnings if PHP 7.2 or 7.3 is used. Only tested with PHP up to 7.3.x. Also, removed JavaScript which was no longer being used and tweaked the minimal default styling. Tested on WordPress 5.6 with Twenty Twenty-One theme.
2.1
- Removed an unnecessary HTML bold tag that was hanging out in the post form’s intro, and added a success message which will appear after successfully publishing a post.
2.0
- All new plugin essentially. Version 2.0 adds a title, category, and draft post option, along with admin settings.
1.0
- First release. A simple textarea and tag field.