widget-for-co-authors/widget-for-co-authors.php

144 lines
4.1 KiB
PHP
Raw Normal View History

2017-12-04 16:18:23 +01:00
<?php
/*
2018-01-27 17:53:08 +01:00
Plugin Name: Co-Authors Widget (develop)
Description: The plugin add a widget and a shortcode in order to show authors of an article. It is compatible with Co-Authors Plus. (developing version)
2018-01-27 17:54:27 +01:00
Version: 0.5
2017-12-04 16:18:23 +01:00
Author: Gianluigi Filippelli
Author URI: http://dropseaofulaula.blogspot.it/
2018-01-27 17:53:08 +01:00
Plugin URI: https://github.com/ulaulaman/widget-for-co-authors
License: GPLv2 or later
2017-12-04 16:18:23 +01:00
*/
/* ------------------------------------------------------ */
# ---------------------------------------------------------
2018-01-27 18:22:18 +01:00
// Load translations
add_action('plugins_loaded', 'wan_load_textdomain');
function wan_load_textdomain() {
load_plugin_textdomain( 'co-authors-widget', false, dirname( plugin_basename(__FILE__) ) . '/languages/' );
}
# Shortcode to show authors
2017-12-04 16:18:23 +01:00
add_shortcode('blog-post-coauthors', 'blog_post_coauthors');
function blog_post_coauthors() {
2018-01-27 17:53:08 +01:00
return coauthors_posts_links(", ", " & ", null, null, false);
2017-12-04 16:18:23 +01:00
}
# Widget to show authors' avatars
2017-12-04 16:18:23 +01:00
function blog_avatars() {
if ( function_exists( 'get_coauthors' ) ) {
$coauthors = get_coauthors();
$user_posts = get_author_posts_url( $coauthor->ID, $coauthor->user_nicename );
2018-01-27 17:53:08 +01:00
$show_profile = __( 'Show profile', 'text-domain' );;
$hide_profile = __( 'Hide profile', 'text-domain' );;
2017-12-04 16:18:23 +01:00
$i = 0;
foreach ( $coauthors as $coauthor ) {
$i++;
?>
<div class="block-item-text">
<input type="checkbox" hidden class="read-more-state" id="<?php echo $i; ?>">
<div class="read-more-wrap">
<p><?php echo coauthors_get_avatar( $coauthor, 65 ); ?>
<a href=<?php echo get_author_posts_url( $coauthor->ID, $coauthor->user_nicename ); ?>><?php echo $coauthor->display_name; ?></a></p>
<p class="read-more-target">
<?php echo $coauthor->description; ?>
</p>
</div>
<label for="<?php echo $i; ?>" class="read-more-trigger_closed">
2018-01-27 17:53:08 +01:00
<strong>+ <?php echo $show_profile; ?></strong>
2017-12-04 16:18:23 +01:00
</label>
<label for="<?php echo $i; ?>" class="read-more-trigger_opened">
2018-01-27 17:53:08 +01:00
<strong>- <?php echo $hide_profile; ?></strong>
2017-12-04 16:18:23 +01:00
</label>
</div>
<?php
}
//
} else {
?>
<p><?php echo get_avatar( get_the_author_meta( 'user_email' ), 65 ); ?>
<a href=<?php echo get_author_posts_url( $coauthor->ID, $coauthor->user_nicename ); ?>><?php echo $coauthor->display_name; ?></a></p>
<?php
}
}
function blog_enqueue() {
wp_register_style( 'blog-spoiler-style', plugins_url('/blog-spoiler.css', __FILE__) );
wp_enqueue_style( 'blog-spoiler-style' );
}
add_action( 'wp_enqueue_scripts', 'blog_enqueue' );
# Shortcode authors' avatars
2017-12-04 16:18:23 +01:00
add_shortcode('blog-coauthors-avatars', 'blog_coauthors_avatars');
function blog_coauthors_avatars() {
return blog_avatars();
}
// Widget register
2017-12-04 16:18:23 +01:00
function blog_load_widget() {
register_widget( 'blog_widget' );
}
add_action( 'widgets_init', 'blog_load_widget' );
// Widget load
2017-12-04 16:18:23 +01:00
class blog_widget extends WP_Widget {
function __construct() {
parent::__construct(
// Widget ID
2017-12-04 16:18:23 +01:00
'blog_widget',
// Widget name in UI
2018-01-27 17:53:08 +01:00
__('Authors', 'blog_widget_domain'),
2017-12-04 16:18:23 +01:00
// Widget description
2018-01-27 17:53:08 +01:00
array( 'description' => __( 'Show avatars and names of the authors', 'blog_widget_domain' ), )
2017-12-04 16:18:23 +01:00
);
}
// Widget front-end
2017-12-04 16:18:23 +01:00
public function widget( $args, $instance ) {
$title = apply_filters( 'widget_title', $instance['title'] );
// before and after
2017-12-04 16:18:23 +01:00
echo $args['before_widget'];
if ( ! empty( $title ) )
echo $args['before_title'] . $title . $args['after_title'];
// output
2017-12-04 16:18:23 +01:00
blog_avatars();
echo $args['after_widget'];
}
// Widget backend
2017-12-04 16:18:23 +01:00
public function form( $instance ) {
if ( isset( $instance[ 'title' ] ) ) {
$title = $instance[ 'title' ];
}
else {
2018-01-27 17:53:08 +01:00
$title = __( 'Written by', 'blog_widget_domain' );
2017-12-04 16:18:23 +01:00
}
// Widget form
2017-12-04 16:18:23 +01:00
?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
</p>
<?php
}
// Widget update
2017-12-04 16:18:23 +01:00
public function update( $new_instance, $old_instance ) {
$instance = array();
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
return $instance;
}
}
/* ------------------------------------------------------ */
?>