Publikování příspěvků nepřihlášenými návštěvníky

Možnost vkládání příspěvků neregistrovanými (ale i registrovanými) uživateli, bez toho, aby museli vstupovat do administrace WordPressu.

**Form to Post**

Form to Post

Create a WP Post from a Form Submission. Create a form using Contact Form 7, Fast Secure Contact Form, or just a plain form, be sure to name your fields correctly, then the form submission will be sent to a post.

**DJD Site Post**
„https://wordpress.org/plugins/djd-site-post/“:https://wordpress.org/plugins/djd-site-post/

Write and edit a post at the front end without leaving your site. Add a (responsive) form to your site to write a post without having to go into the admin section. It allows for ‚anonymous‘ or ‚guest‘ posting (not logged in users). Captcha for guest posts.
Now the plugin has a widget to include the form in a sidebar.

*Alternativy*

**TDO Mini Forms**
„http://wordpress.org/extend/plugins/tdo-mini-forms/“:http://wordpress.org/extend/plugins/tdo-mini-forms/
„http://thedeadone.net/download/tdo-mini-forms-wordpress-plugin/“:http://thedeadone.net/download/tdo-mini-forms-wordpress-plugin/

With TDO Mini Forms you can set up forms for visitors to fill out that are used to create posts.

This plugin allows you to add highly customisable forms that work with your Theme to your website that allows non-registered users and/or subscribers (also configurable) to submit posts. The posts are kept in „draft“ until an admin can publish them (also configurable).

It can optionally use Akismet to check if submissions are spam.

TDO Mini Forms can be used to create „outside-the-box“ uses for WordPress, from Contact Managers, Ad Managers, Collaborate Image Sites, Submit Links, Forum etc.

Použito pro přidávání příspěvků nepřihlášenými návštěvníky na serveru „anagrammer.org“:http://anagrammer.org/vase-nalezy/.

**WP User Frontend**
„http://wordpress.org/extend/plugins/wp-user-frontend/“:http://wordpress.org/extend/plugins/wp-user-frontend/

Gives ability to the user to create new post, edit post, edit profile from site frontend. So users doesn’t need to enter the admin panel. Everything they need to do can be done from the frontend.

**Guest Post**
„http://wordpress.org/extend/plugins/wordpress-guest-post/“:http://wordpress.org/extend/plugins/wordpress-guest-post/

A simple plugin that allows you to accept, edit, & publish guest posts to your blog without writers having to login to your WordPress Admin area.

**One Quick Post**
„http://wordpress.org/extend/plugins/one-quick-post/“:http://wordpress.org/extend/plugins/one-quick-post/

One Quick Post is a WordPress/BuddyPress plugin that allows you to enable frontend posting on your blog; including for non-registered users.
Enables building custom forms. Works with custom post types, custom taxomies, custom fields (meta keys).

**Frontend Publishing**
„https://wordpress.org/plugins/front-end-publishing/“:https://wordpress.org/plugins/front-end-publishing/
Allow your registered members to submit, edit and delete posts from the frontend.
This lightweight plugin allows you to accept guest posts/articles without giving your members access to the sensitive WordPress control panel. It will automatically filter out all the posts that don’t meet the submission guidelines of your website. It can be a huge time saver if you have a very popular blog or article directory.

**Really Simple Guest Post Plugin**
„https://wordpress.org/plugins/really-simple-guest-post/“:https://wordpress.org/plugins/really-simple-guest-post/

Really Simple Guest Post Plugin will help you to generate a guest posting form in the simple and easiest way. Submitted posts will be included with author name, email address, author url, post title, description, categories and keyword tags.

**Frontend Uploader**
„http://wordpress.org/plugins/frontend-uploader/“:http://wordpress.org/plugins/frontend-uploader/

This plugin is a simple way for users to submit content to your site. The plugin uses a set of shortcodes to let you create highly customizable submission forms to your posts and pages. Once the content is submitted, it is held for moderation until you approve it. It’s that easy!

[* http://s.w.org/plugins/frontend-uploader/screenshot-4.png?r=944237 *]

 

Vyhledávání duplicitních příspěvků

**Duplicate Post Checker**
„http://www.maxblogpress.com/plugins/dpc/“:http://www.maxblogpress.com/plugins/dpc/

Vyhledá podobné příspěvky podle obsahu nebo podle zadaného klíčového slova. „Návod k použití“:http://www.maxblogpress.com/plugins/dpc/dpc-use/
Vyžaduje registraci.

*Alternativa:*

**Delete Duplicate Posts**
„http://wordpress.org/extend/plugins/delete-duplicate-posts/“:http://wordpress.org/extend/plugins/delete-duplicate-posts/

Easy way to find and delete duplicate posts on your WordPress blog. The plugin searches for duplicate titles, and displays a list for you. After the list you can find the Delete button.

Zobrazení obsahu pouze přihlášeným uživatelům

Do souboru **functions.php** (Vzhled > Upravit soubory) stačí přidat následující:

/—code php
add_shortcode( ‚member‘, ‚member_check_shortcode‘ );

function member_check_shortcode( $atts, $content = null ) {
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() )
return $content;
return “;
}
\—

Pak už stačí kdekoli v příspěvku „obalit“ text určený pouze registrovaným uživatelům tagem [member]:

/—code php
[member]
Toto se zobrazí pouze přihlášeným uživatelům
[/member]
\—

Je-li potřeba to nastavit už v šabloně vzhledu, je třeba použít

/—code php

\—

„Více příkladů »“:http://justintadlock.com/archives/2009/05/09/using-shortcodes-to-show-members-only-content

Automatické publikování na / z Twitteru

**Twitter Tools**
„http://wordpress.org/extend/plugins/twitter-tools/“:http://wordpress.org/extend/plugins/twitter-tools/
„http://www.sutlej.net/downloads/best-related-posts/“:http://www.sutlej.net/downloads/best-related-posts/

Integrates your blog and your Twitter account so you can post links to your latest posts on Twitter, post your most recent tweets on your blog sidebar, or turn your tweets into blog posts without extra effort.

First thing you need to do is download and activate this plugin. Once you have done that follow the steps below:

1. Create a Category where you would like to post all your automated posts. You can name this category Daily Digest, Twitter, or anything you like.
2. Go to the settings of Twitter Tools Plugin in your WP-Admin.
3. Enter Your Twitter Username and Password.
4. Enable the option to post when you tweet. If you do not want to create an individual post for each tweet, your solution is the next option.
5. Enable the option to create daily digest with all your tweets from that day and modify other settings such as title of that post and title. (You can also set this to weekly digests)
6. Select the category that you made in step 1, to post your tweets.

Once you have done the above steps, you have completed the setup and its ready to go.

**Display Tweets in the Sidebar**

But this plugin has a lot more features then just this. You can also display your recent tweets in the sidebar using this plugin. All you have to do is either use the dynamic widget or paste the following code in your sidebar.php or any other place that you want it displayed:

/—code php

\—

If you just want to show your last tweet then use this code:

/—code php

\—

Zdroj: „How to Auto Publish Your Twitter Tweets as WordPress Posts“:http://www.wpbeginner.com/plugins/how-to-auto-publish-your-twitter-tweets-as-wordpress-posts/

**Jak použít ve WordPressu Twitter API bez pluginu**
„http://www.problogdesign.com/wordpress/how-to-use-the-twitter-api-in-wordpress/“:http://www.problogdesign.com/wordpress/how-to-use-the-twitter-api-in-wordpress/

Zobrazení souvisejících příspěvků

This is a great little feature to have in your theme that saves the theme user using yet another plugin! It displays **related posts based on tags**, simply disappearing if there are no tags.

/—code php
ID);
if ($tags) {
echo ‚

Related Posts

‚;
$first_tag = $tags[0]->term_id;
$args=array(
‚tag__in‘ => array($first_tag),
‚post__not_in‘ => array($post->ID),
‚showposts’=>5,
‚caller_get_posts’=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>

  • Publikování příspěvků e-mailem

    **Postie**
    „http://wordpress.org/extend/plugins/postie/“:http://wordpress.org/extend/plugins/postie/
    „http://blog.robfelty.com/plugins/postie/“:http://blog.robfelty.com/plugins/postie/
    „fórum k pluginu“:http://forum.robfelty.com/forum/postie

    Postie offers many advanced features for posting to your blog via e-mail, including the ability to **assign categories by name**, **tag**, include pictures and videos, and automatically strip off signatures.

    **Category and tag handling**

    * If you put a category name or ID in the subject with a : (or in [] or between – -) it will be used as the category for the post
    * If you put the first part of a category name it will be posted in the first category that the system finds that matches – so if you put:

    /—code php
    Subject: Gen: New News
    \—

    the system will post that in General.

    Using [] or — you can also post to multiple categories at once:

    /—code php
    Subject: [1] [Mo] [Br] bla bla bla
    \—

    or

    /—code php
    Subject: -1- -Mo- -Br- bla bla bla
    \—

    would post to General (Id 1), Moblog, and Brewing all at one time.

    * You can add tags by adding a line in the body of the message like:

    /—code php
    tags: foo, bar
    \—

    or you can set a default tag to be applied if no tags are included.

    „Post to your blog using email“:http://codex.wordpress.org/Post_to_your_blog_using_email (obecná informace z WP Codex).