প্রাকদর্শন মোড থেকে পোস্ট অনুমোদিত?


10

সম্পাদনা মোড এবং / অথবা "পোস্টের তালিকা" মোডে ফিরে আসার পরিবর্তে আমি কীভাবে কোনও পোস্টকে পূর্বরূপ মোড থেকে সরাসরি অনুমোদন করব?

আমি স্ক্রিপ্ট-ম্যাটিক্যালি বেশ কয়েকটি (শতাধিক) পোস্ট আপলোড করছি, তবে অনুমোদনের আগে এগুলি সংক্ষিপ্তভাবে লাইভ পূর্বরূপ দেখতে চাই।

উত্তর:


8

এখানে আমি রাখছি এমন কিছু:

<?php
/*
Plugin Name: Approve From preview
Plugin URI: http://en.bainternet.info
Description: Approve from privew  is Plugin that lets yo approve posts (draft and pending) from the preview itself.
Version: 0.1
Author: Bainternet
License:

  Copyright 2012 Bainternet (admin@bainternet.info)

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License, version 2, as 
  published by the Free Software Foundation.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA

*/
if (!class_exists('ApproveFromPreview')){

        class ApproveFromPreview {
                /**
                 * Constructor
                 */
                function __construct() {
                    //create approve link
                    add_filter('the_content',array($this,'add_approve_button'));
                    add_filter('the_content',array($this,'show_approved'));

                    //create message
                    add_action('wp',array($this,'approve_post'));
                }

                /**
                 * add_approve_button  shows a link when in preview
                 * @param  string $content 
                 * @return string 
                 */
                public function add_approve_button($content){
                    global $post;
                    if (is_preview() &&  
                        current_user_can( 'edit_post', $post->ID ) &&  
                        current_user_can( 'publish_posts', $post->ID ) &&
                        in_array($post->post_status,array('draft', 'pending'))
                    ){
                        return $this->get_button().$content;
                    }

                    return $content;
                }

                /**
                 * show_approved shows a message if approved or not
                 * @param  string $content 
                 * @return string 
                 */
                public function show_approved($content){
                    //show fail success message
                    $msg = '';
                    if ( isset( $_GET['msg'] ) ){
                        if( $_GET['msg'] == 'approved' ) 
                            $con =  '<div class="success" style="background: #1599CC;padding: 3px;border-radius: 10px;">' . __( 'Post Approved' ) . '</div>';
                        else
                            $con =  '<div class="error" style="background: #CC1515;padding: 3px;border-radius: 10px;">' . __( 'Post not Approved' ) . '</div>';
                    }
                    return $con . $content;
                }

                public function get_button(){
                    global $post;
                    return '<a href="'.wp_nonce_url( "?action=AFP&pid=" . $post->ID, 'AFP_NONCE').'" class="button">'.__('Approve').'</a><br/>';
                }

                /**
                 * approve_post if needed this plugin will call the approval action and 
                 * redirect to the newly approved post with a message.
                 * @return Void
                 */
                public function approve_post(){
                    if (!isset($_REQUEST['_wpnonce']) || 
                        !isset($_REQUEST['pid']) || 
                        !isset( $_REQUEST['action']) || 
                        $_REQUEST['action'] != "AFP" )
                    {
                        return;
                    }

                    $nonce = $_REQUEST['_wpnonce'];
                    if ( !wp_verify_nonce( $nonce, 'AFP_NONCE' ) ) {
                        return; 
                    }
                    $pid = intval($_REQUEST['pid']);
                    if (current_user_can( 'edit_post',$pid ) && current_user_can( 'publish_posts', $pid )){
                        $p = $this->change_post_status($pid,'publish');
                        if ($p > 0){
                            $redirect = add_query_arg( array('msg' => 'approved'), get_permalink($p) );
                            wp_redirect( $redirect );
                            exit;
                        }else{
                            $redirect = add_query_arg( array('msg' => 'not_approved'), get_permalink() );
                            wp_redirect( $redirect );
                            exit;
                        }
                        return;
                    }
                    return;
                }

                /**
                * the function that will actually change the post status
                * $post_id - The ID of the post you'd like to change.
                * $status -  The post status publish|pending|draft|private|static|object|attachment|inherit|future|trash.
                */
                /**
                 * change_post_status description
                 * @param  int $post_id  post id
                 * @param  string $status  new status
                 * @return int 1 if successfully  0  if not :)
                 */
                public function change_post_status($post_id,$status){
                    $current_post = get_post( $post_id, 'ARRAY_A' );
                    $current_post['post_status'] = $status;
                    return wp_update_post($current_post);
                }



        } // end class
}//end if
new ApproveFromPreview();

আমি এটিতে কিছুক্ষণ পরীক্ষা করে দেখিনি তবে এটি ঠিক কাজ করা উচিত।


0

কেবলমাত্র সিটিআরএল-এর "প্রাকদর্শন" বোতামটি ক্লিক করে কী ঘটেছিল যাতে আপনি নিজের ব্রাউজারের অন্য উইন্ডো / ট্যাবে পূর্বরূপ পান? তারপরে প্রাকদর্শন ট্যাবটি বন্ধ করতে কেবল সিটিআরএল-ডাব্লু করুন এবং তারপরে আপনার প্রকাশিত বোতামটি চাপুন।

ঠিক আছে, নিম্ন প্রযুক্তির সমাধান, এবং বাইনারনেটের সমাধান অবশ্যই স্পষ্টভাবে কাঁপবে। ভেবেছিলাম আমি ওখানে রেখে দিয়েছি ...


অনেকগুলি ক্লিক :) আসলে, এটাই আমি "পোস্টের তালিকা" মোড দ্বারা বোঝাতে চাইছিলাম। আমি আক্ষরিক অর্থে পোস্টের পর্যালোচনা করছি এবং প্রতিটি ক্লিক গণনা করা হচ্ছে।
ব্যারিকার্টার
আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.