3

練習用にWordpressの最近の投稿ウィジェットを作成しています。しかし、どうすればいいのかわからないことがいくつかあります。まず第一に、ウィジェットは、投稿の日付と時刻、投稿のタイトル、スマート カット オフ文字制限付きのテキスト、および [続きを読む] リンクを表示する必要があります。また、管理者がタイトル、カテゴリ、表示する投稿の数、投稿に表示する文字数を指定し、最後に「続きを読む」リンクの文言を変更できるようにする必要があります。

私はすでにウィジェットを作成し、すべてを行う方法を考え出しましたが、カテゴリの選択をドロップダウン選択にして、カテゴリが既にそこにあるようにしました(現在、表示するカテゴリに入力できる管理者用のテキストブロックです) 、単語の最後でスマートに切り捨てるように文字を制限しthe_excerpt、管理者が自分の文字を許可する方法を指定できるようにする方法と、管理者が内容を指定できるようにしながら、続きを読むリンクを作成する方法.

これまでのコードと、サイドバーにウィジェットを含むサイトへのリンクを掲載します。私はWordpressウィジェットのデザインが初めてなので、助けていただければ幸いです。

<?php
/*
Plugin Name: News Recent Posts Widget
Plugin URI: 
Description: A recent post widget with extra functions for client management
Author: Kevin Ullyott
Version: 1.0
Author URI: http://modmacro.com/
*/


class recentpost extends WP_Widget {

    public function __construct() {
    parent::WP_Widget(
    // or parent::__construct(
        false, 
        'Kevin - Recent Posts Widget',
        array(
            'description' => __('A recent post widget with extra functions for client management') 

        )
    );
    ;
}

    public function widget( $args, $instance ) {


        extract( $args );

        $headline = $instance['headline'];
        $category = $instance['category'];
        $numberposts = $instance['numberposts'];
        $readmore = $instance['readmore'];


        echo $before_widget;

        echo $before_title;

        echo "<p class=\"headline\">$headline</p>";

        echo $after_title;

        $args = array( 'numberposts' => $numberposts, 'category_name' => $category );
        $recent_posts = wp_get_recent_posts( $args );
        foreach( $recent_posts as $recent ){
        setup_postdata(get_post($recent['ID']));
        echo '<a href="' . get_permalink() . '" title=" '.esc_attr(get_the_title()).'" >' .   get_the_title().'</a> ';
        echo get_the_time('F j, Y', $recent['ID']);
        the_excerpt();
}
wp_reset_postdata();


        echo $after_widget;


    }

    public function update( $new_instance, $old_instance ) {
        $instance = array();
        $instance['headline'] = ( $new_instance['headline'] );
        $instance['category'] = ( $new_instance['category'] );
        $instance['numberposts'] = ( $new_instance['numberposts'] );
        $instance['readmore'] = ( $new_instance['readmore'] );
        return $instance;
    }


    public function form( $instance ) {

        $headline = $instance[ 'headline' ];
        $category = $instance[ 'category' ];
        $numberposts = $instance[ 'numberposts' ];
        $readmore = $instance[ 'readmore' ];

        ?>

<p>
  <label for="<?php echo $this->get_field_id( 'headline' ); ?>">
    <?php _e( 'Headline:' ); ?>
  </label>
  <input class="widefat" id="<?php echo $this->get_field_id( 'headline' ); ?>" name="<?php echo $this->get_field_name( 'headline' ); ?>" type="text" value="<?php echo esc_attr( $headline ); ?>" />
</p>
<label for="<?php echo $this->get_field_id( 'category' ); ?>">
  <?php _e( 'Category:' ); ?>
</label>
<input class="widefat" id="<?php echo $this->get_field_id( 'category' ); ?>" name="<?php echo $this->get_field_name( 'category' ); ?>" type="text" value="<?php echo esc_attr( $category ); ?>" />
</p>
<label for="<?php echo $this->get_field_id( 'numberposts' ); ?>">
  <?php _e( 'Number of posts:' ); ?>
</label>
<input class="widefat" id="<?php echo $this->get_field_id( 'numberposts' ); ?>" name="<?php echo $this->get_field_name( 'numberposts' ); ?>" type="text" value="<?php echo esc_attr( $numberposts ); ?>" />
</p>
<label for="<?php echo $this->get_field_id( 'readmore' ); ?>">
  <?php _e( 'Read More:' ); ?>
</label>
<input class="widefat" id="<?php echo $this->get_field_id( 'readmore' ); ?>" name="<?php echo $this->get_field_name( 'readmore' ); ?>" type="text" value="<?php echo esc_attr( $readmore ); ?>" />
</p>
<?php 
    }
}

add_action( 'widgets_init', create_function('', 'return register_widget("recentpost");') );


?>

http://www.modmacro.us/wpsandbox/

4

1 に答える 1

1

この質問にはたくさんあります。練習問題としてこれに取り組んでいるのは素晴らしいことだと思います。それがまさに私が学んだ方法です。私はいくつかの部分を手伝うことができます。

カテゴリ

get_categoriesフォーム関数では、最初にWordPressの関数を使用してすべてのカテゴリのリストを取得する必要があります。

$categories = get_categories(array('type'=>'post','orderby'=> 'name','order'=> 'ASC'));

次に、フォームにドロップダウンメニューを表示するには、forループを使用して各カテゴリを調べます。

echo '<select name="' . $this->get_field_name('category') . '" id="' . $this->get_field_id('category') . '">';
  foreach($categories as $category):
    echo '  <option value="' . $category->slug .'" '. selected($category->slug, $instance['category'], false) . '>' . $category->name . '</option>';        
  endforeach;
echo '</select>';

投稿の日時などを表示する

WP_Queryクラスを使用する方が良いと思います。これは、より柔軟性があり、最近では推奨されるルートのようです。ウィジェット関数では、次のようになります

$args = array( 'numberposts' => $numberposts, 'category_name' => $category );

$myquery = new WP_Query($args);

while($myquery->have_posts()): $myquery->the_post();

  echo '<a href="' . get_permalink() . '" title=" '.esc_attr(get_the_title()).'" >' .   get_the_title().'</a> ';
  echo get_the_time('F j, Y', $myquery->ID);
  the_excerpt();

endwhile;
wp_reset_query();
wp_reset_postdata();

抜粋を制限する

ただし、これはテーマ内の抜粋のすべての使用に適用されます。

function new_excerpt_length($length) {
    return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');
于 2013-01-04T21:11:49.467 に答える