HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux aritmodecarnaval.es 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/www/aritmodecarnaval/wp-content/plugins/wp-show-posts/inc/defaults.php
<?php
// No direct access, please
if ( ! defined( 'ABSPATH' ) ) exit;

if ( ! function_exists( 'wpsp_get_defaults' ) ) {
	/**
	 * Set all of our defaults
	 * @since 0.1
	 */
	function wpsp_get_defaults() {
		$defaults = array(
			'wpsp_author'             		=> '',
			'wpsp_author_location'	  		=> 'below-post',
			'wpsp_columns'			  		=> 'col-6',
			'wpsp_columns_gutter'	  		=> '2em',
			'wpsp_content_type' 	  		=> 'excerpt',
			'wpsp_date_location'	  		=> 'below-title',
			'wpsp_exclude_current'	  		=> false,
			'wpsp_excerpt_length'	  		=> 30,
			'wpsp_post_id' 			  		=> '',
			'wpsp_exclude_post_id' 	  		=> '',
			'wpsp_ignore_sticky_posts' 		=> false,
			'wpsp_image'			  		=> true,
			'wpsp_image_alignment'	  		=> 'center',
			'wpsp_image_height'        		=> '',
			'wpsp_image_location'	  		=> 'below-title',
			'wpsp_image_width'         		=> '',
			'wpsp_include_title'       		=> true,
			'wpsp_title_element' 	   		=> 'h2',
			'wpsp_include_terms'       		=> false,
			'wpsp_include_author'      		=> false,
			'wpsp_include_date'        		=> true,
			'wpsp_include_comments'			=> false,
			'wpsp_comments_location'		=> 'below-post',
			'wpsp_inner_wrapper'       		=> 'article',
			'wpsp_inner_wrapper_class' 		=> '',
			'wpsp_inner_wrapper_style' 		=> '',
			'wpsp_itemtype'			   		=> 'CreativeWork',
			'wpsp_meta_key'            		=> '',
			'wpsp_meta_value'          		=> '',
			'wpsp_offset'              		=> 0,
			'wpsp_order'               		=> 'DESC',
			'wpsp_orderby'             		=> 'date',
			'wpsp_pagination'          		=> false,
			'wpsp_post_meta_bottom_style'	=> 'stack',
			'wpsp_post_meta_top_style' 		=> 'inline',
			'wpsp_post_status'         		=> 'publish',
			'wpsp_post_type'           		=> 'post',
			'wpsp_posts_per_page'      		=> 10,
			'wpsp_read_more_text'	  		=> '',
			'wpsp_tax_operator'        		=> 'IN',
			'wpsp_tax_term'            		=> '',
			'wpsp_taxonomy'            		=> 'category',
			'wpsp_terms_location'       	=> 'below-post',
			'wpsp_wrapper'             		=> 'section',
			'wpsp_wrapper_class'       		=> '',
			'wpsp_wrapper_id'          		=> false,
			'wpsp_wrapper_style'       		=> '',
			'wpsp_no_results'		   		=> __( 'Sorry, no posts were found.','wp-show-posts' ),
			'wpsp_read_more_class'			=> 'wp-show-posts-read-more',
		);

		return apply_filters( 'wpsp_defaults', $defaults );
	}
}