'', 'ratio' => '1/1', 'tag_name' => 'figure' ] ); $next_post_image_output = blocksy_simple_image( $next_thumb, [ 'inner_content' => '', 'ratio' => '1/1', 'tag_name' => 'figure' ] ); } else { $previous = $previous_link_url === false ? '' : ''; $next = $next_link_url === false ? '' :''; } // Creates the links $previous = $previous_link_url === false ? '' : ( ''); $next = $next_link_url === false ? '' : ( ''); return ['next' => $next, 'previous' => $previous]; } /** * Retrieves the current items list source link */ function blocksy_tainacan_get_source_item_list_url() { $args = $_GET; if (isset($args['ref'])) { $ref = $_GET['ref']; unset($args['pos']); unset($args['ref']); unset($args['source_list']); return $ref . '?' . http_build_query(array_merge($args)); } else { unset($args['pos']); unset($args['ref']); unset($args['source_list']); return tainacan_the_collection_url() . '?' . http_build_query(array_merge($args)); } }