Envira Gallery Documentation
Documentation, Reference Materials and Tutorials for Envira Gallery
Documentation, Reference Materials and Tutorials for Envira Gallery
If you are using the Featured Content addon and would like to add additional information to your output (such as author, date, category, or taxnomy information) you can do that through a filter provided in the plugin. This requires you to be a little familiar with WordPress coding but we can help walk you through how to do that!
We’ll begin by creating a custom plugin. Just add the following code to a new file at wp-content/plugins/envira-fc-add-content.php
.
<?php /** * Plugin Name: Envira Gallery - Add Additional Content to Featured Content * Plugin URI: https://enviragallery.com * Version: 1.0 * Author: Envira Gallery Team * Author URI: https://enviragallery.com * Description: Adds Additional Content to Featured Content */ function envira_fc_date_terms( $content, $posts, $data, $post ) { // Start Config $slider_slugs = array( 'featured-content-test' //'your-slider-slug-name', ); // Check slider ID is the one we want to amend if ( ! in_array( $data['config']['slug'], $slider_slugs ) ) { return $content; } $gallery = get_post( intval( $data['config']['id'] ) ); // Build date and taxonomy terms content $additional_content = '<div class="envira-fc-author-name">' . __( 'Posted by: ', 'envira-featured-content-date-terms' ) . get_the_author() . ' </div>' . '<div class="envira-fc-date">' . __( 'Published on ', 'envira-featured-content-date-terms' ) . get_the_date( 'dS F Y', $gallery->ID ) . ' </div>' . '<div class="envira-fc-category"> ' . __( 'in ', 'envira-featured-content-date-terms' ) . get_the_term_list( $gallery->ID, 'category', 'Categories: ', ', ' ) . ' </div>'; switch ( $data['config']['gallery_column_title_caption'] ) { case 'title': $content['title'] = $content['title'] . ' ' . $additional_content; break; case 'title_caption': $content['title'] = $content['title'] . ' ' . $additional_content; break; default: $content['caption'] = $content['caption'] . ' ' . $additional_content; break; } // Return content return $content; } add_filter( 'envira_featured_content_image', 'envira_fc_date_terms', 1, 4 );
If you’re unsure how to create a plugin file, follow these steps below:
envira-fc-add-content.php
.Your final step is to activate the plugin you just uploaded. Simply navigate to the Plugins from within your WordPress dashboard and activate the Envira Gallery – Add Additional Content to Featured Content plugin.
And that’s it!