2021.1007 Sistemata indentazione. Modificato lo stile.

This commit is contained in:
ulaulaman 2021-10-08 22:27:40 +02:00
parent e912ffd2f5
commit 27b87a65cd
1 changed files with 104 additions and 112 deletions

View File

@ -2,156 +2,148 @@
/* /*
Plugin Name: Co-Authors Widget Dev Plugin Name: Co-Authors Widget Dev
Description: The plugin add a widget and a shortcode in order to show authors of an article. It is compatible with Co-Authors Plus. Description: The plugin add a widget and a shortcode in order to show authors of an article. It is compatible with Co-Authors Plus.
Version: 2020.0922 Version: 2021.1007
Author: Gianluigi Filippelli Author: Gianluigi Filippelli
Author URI: http://dropseaofulaula.blogspot.it/ Author URI: http://dropseaofulaula.blogspot.it/
Plugin URI: https://github.com/ulaulaman/widget-for-co-authors Plugin URI: https://gitea.it/ulaulaman/widget-for-co-authors-dev
Gitea Plugin URI: https://gitea.it/ulaulaman/widget-for-co-authors-dev
License: GPLv2 or later License: GPLv2 or later
*/ */
/* ------------------------------------------------------ */ /* ------------------------------------------------------ */
# --------------------------------------------------------- # ---------------------------------------------------------
// Load translations // Load translations
add_action('plugins_loaded', 'caw_load_translations'); add_action( 'plugins_loaded', 'caw_load_translations' );
function caw_load_translations() { function caw_load_translations() {
load_plugin_textdomain( 'widget-for-co-authors', false, dirname( plugin_basename(__FILE__) ) . '/lang/' ); load_plugin_textdomain( 'widget-for-co-authors', false, dirname( plugin_basename(__FILE__) ) . '/lang/' );
} }
# Shortcode to show authors // Shortcode to show authors
add_shortcode('blog-post-coauthors', 'blog_post_coauthors'); add_shortcode( 'blog-post-coauthors', 'blog_post_coauthors' );
function blog_post_coauthors() { function blog_post_coauthors() {
return coauthors_posts_links(", ", " & ", null, null, false); return coauthors_posts_links(", ", " & ", null, null, false);
} }
# Widget to show authors' avatars // Widget to show authors' avatars
function blog_avatars() { function blog_avatars_wp() {
$show_profile = __( 'Show profile', 'widget-for-co-authors' ); $show_profile = __( 'Show profile', 'widget-for-co-authors' );
$hide_profile = __( 'Hide profile', 'widget-for-co-authors' ); $hide_profile = __( 'Hide profile', 'widget-for-co-authors' );
if ( function_exists( 'get_coauthors' ) ) {
$coauthors = get_coauthors(); if ( function_exists( 'get_coauthors' ) ) {
$user_posts = get_author_posts_url( $coauthor->ID, $coauthor->user_nicename ); $coauthors = get_coauthors();
$user_posts = get_author_posts_url( $coauthor->ID, $coauthor->user_nicename );
$i = 0;
foreach ( $coauthors as $coauthor ) { $i = 0;
$i++; foreach ( $coauthors ad $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><div style="float:left; padding: 5px;"><?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></div><span class="read-more-target"><?php echo $coauthor->description; ?></span></p>
</div>
<label for="<?php echo $i; ?>" class="read-more-trigger_closed">
<strong>+ <?php printf( $show_profile ); ?></strong>
</label>
<label for="<?php echo $i; ?>" class="read-more-trigger_opened">
<strong>- <?php printf( $hide_profile ); ?></strong>
</label>
</div>
<?php
}
} else {
$i = 0;
?> ?>
<div class="block-item-text"> <div class="block-item-text">
<input type="checkbox" hidden class="read-more-state" id="<?php echo $i; ?>"> <input type="checkbox" hidden class="read-more-state" id="<?php echo $i; ?>" />
<div class="read-more-wrap"> <div class="read-more-wrap">
<p><?php echo coauthors_get_avatar( $coauthor, 65 ); ?> <p><div style="float:left; padding: 5px;"><?php echo get_avatar( get_the_author_meta( 'user_email' ), 65 ); ?><a href=<?php echo get_the_author_meta( 'user_url' ); ?>><?php echo get_the_author_meta( 'display_name' ); ?></a></div><span class="read-more-target"><?php echo get_the_author_meta( 'description' ); ?></span></p>
<a href=<?php echo get_author_posts_url( $coauthor->ID, $coauthor->user_nicename ); ?>><?php echo $coauthor->display_name; ?></a></p> </div>
<p class="read-more-target"> <label for="<?php echo $i; ?>" class="read-more-trigger_closed">
<?php echo $coauthor->description; ?> <strong>+ <?php printf( $show_profile ); ?></strong>
</p> </label>
</div> <label for="<?php echo $i; ?>" class="read-more-trigger_opened">
<label for="<?php echo $i; ?>" class="read-more-trigger_closed"> <strong>- <?php printf( $hide_profile ); ?></strong>
<strong>+ <?php printf( $show_profile ); ?></strong> </label>
</label> </div>
<label for="<?php echo $i; ?>" class="read-more-trigger_opened">
<strong>- <?php printf( $hide_profile ); ?></strong>
</label>
</div>
<?php <?php
} }
//
} else {
$i = 0;
?>
<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 get_avatar( get_the_author_meta( 'user_email' ), 65 ); ?>
<a href=<?php echo get_the_author_meta( 'user_url' ); ?>><?php echo get_the_author_meta( 'display_name' ); ?></a></p>
<p class="read-more-target">
<?php echo get_the_author_meta( 'description' ); ?>
</p>
</div>
<label for="<?php echo $i; ?>" class="read-more-trigger_closed">
<strong>+ <?php printf( $show_profile ); ?></strong>
</label>
<label for="<?php echo $i; ?>" class="read-more-trigger_opened">
<strong>- <?php printf( $hide_profile ); ?></strong>
</label>
</div>
<?php
}
} }
function blog_enqueue() { function blog_enqueue() {
wp_register_style( 'blog-spoiler-style', plugins_url('/blog-spoiler.css', __FILE__) ); wp_register_style( 'blog-spoiler-style', plugins_url('/blog-spoiler.css', __FILE__) );
wp_enqueue_style( 'blog-spoiler-style' ); wp_enqueue_style( 'blog-spoiler-style' );
} }
add_action( 'wp_enqueue_scripts', 'blog_enqueue' ); add_action( 'wp_enqueue_scripts', 'blog_enqueue' );
# Shortcode authors' avatars // Shortcode authors' avatars
add_shortcode('blog-coauthors-avatars', 'blog_coauthors_avatars'); add_shortcode('blog-coauthors-avatars', 'blog_coauthors_avatars');
function blog_coauthors_avatars() { function blog_coauthors_avatars() {
return blog_avatars(); return blog_avatars();
} }
// Widget register // Widget register
function blog_load_widget() { function blog_load_widget() {
register_widget( 'blog_widget' ); register_widget( 'blog_widget' );
} }
add_action( 'widgets_init', 'blog_load_widget' ); add_action( 'widgets_init', 'blog_load_widget' );
// Widget load // Widget load
class blog_widget extends WP_Widget { class blog_widget extends WP_Widget {
function __construct() { function __construct() {
parent::__construct( parent::__construct(
// Widget ID
'blog_widget',
// Widget name in UI
__('Authors', 'widget-for-co-authors'),
// Widget description
array( 'description' => __( 'Show avatars and names of the authors', 'widget-for-co-authors' ), ) );
}
// Widget ID // Widget front-end
'blog_widget', public function widget( $args, $instance ) {
$title = apply_filters( 'widget_title', $instance['title'] );
// Widget name in UI
__('Authors', 'widget-for-co-authors'), // before and after
echo $args['before_widget'];
// Widget description if ( ! empty( $title ) )
array( 'description' => __( 'Show avatars and names of the authors', 'widget-for-co-authors' ), ) echo $args['before_title'] . $title . $args['after_title'];
);
} // output
blog_avatars();
// Widget front-end echo $args['after_widget'];
public function widget( $args, $instance ) { }
$title = apply_filters( 'widget_title', $instance['title'] );
// before and after
echo $args['before_widget'];
if ( ! empty( $title ) )
echo $args['before_title'] . $title . $args['after_title'];
// output
blog_avatars();
echo $args['after_widget'];
}
// Widget backend // Widget backend
public function form( $instance ) { public function form( $instance ) {
if ( isset( $instance[ 'title' ] ) ) { if ( isset( $instance[ 'title' ] ) ) {
$title = $instance[ 'title' ]; $title = $instance[ 'title' ];
} } else {
else { $title = __( 'Written by', 'widget-for-co-authors' );
$title = __( 'Written by', 'widget-for-co-authors' ); }
// Widget form
?>
<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
public function update( $new_instance, $old_instance ) {
$instance = array();
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
return $instance;
}
} }
// Widget form
?>
<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
public function update( $new_instance, $old_instance ) {
$instance = array();
$instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
return $instance;
}
}
/* ------------------------------------------------------ */
?> ?>