'', 'value' => __('Reset form', 'usp'), 'url' => '#please-check-shortcode', ), $args)); $protocol = is_ssl() ? 'https://' : 'http://'; $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : ''; $current = isset($_SERVER['REQUEST_URI']) ? $protocol . $host . $_SERVER['REQUEST_URI'] : ''; $url = preg_replace('/%%current%%/', $current, $url); $url = remove_query_arg(array('usp_reset_form', 'post_id', 'success', 'usp-error'), $url); $href = get_option('permalink_structure') ? $url .'?usp_reset_form=true"' : $url .'&usp_reset_form=true'; $class = empty($class) ? '' : ' class="'. esc_attr($class) .'"'; $output = ''. esc_html($value) .'

'; return $output; } add_shortcode('usp-reset-button', 'usp_reset_button_shortcode'); /* Displays a list of all user submitted posts Bonus: includes any posts submitted by the Pro version of USP :) Shortcode: [usp_display_posts userid="current"] : displays all submitted posts by current logged-in user [usp_display_posts userid="1"] : displays all submitted posts by registered user with ID = 1 [usp_display_posts userid="Pat Smith"] : displays all submitted posts by author name "Pat Smith" [usp_display_posts userid="all"] : displays all submitted posts by all users/authors [usp_display_posts userid="all" numposts="5"] : limit to 5 posts Note that the Pro version of USP provides many more options for the display-posts shortcode: https://plugin-planet.com/usp-pro-display-list-submitted-posts/ */ function usp_display_posts($attr = array(), $content = null) { global $post; extract(shortcode_atts(array( 'userid' => 'all', 'post_type' => 'post', 'numposts' => -1, ), $attr)); if (ctype_digit($userid)) { $args = array( 'author' => $userid, 'posts_per_page' => $numposts, 'post_type' => $post_type, 'meta_key' => 'is_submission', 'meta_value' => '1' ); } elseif ($userid === 'all') { $args = array( 'posts_per_page' => $numposts, 'post_type' => $post_type, 'meta_key' => 'is_submission', 'meta_value' => '1' ); } elseif ($userid === 'current') { $args = array( 'author' => get_current_user_id(), 'posts_per_page' => $numposts, 'post_type' => $post_type, 'meta_key' => 'is_submission', 'meta_value' => '1' ); } else { $args = array( 'posts_per_page' => $numposts, 'post_type' => $post_type, 'meta_query' => array( 'relation' => 'AND', array( 'key' => 'is_submission', 'value' => '1' ), array( 'key' => 'user_submit_name', 'value' => $userid ) ) ); } $args = apply_filters('usp_display_posts_args', $args); $submitted_posts = get_posts($args); $display_posts = ''; wp_reset_postdata(); return $display_posts; } add_shortcode('usp_display_posts', 'usp_display_posts'); /* Shortcode: [usp_gallery] Displays a gallery of submitted images for the current post Syntax: [usp_gallery size="" format="" target="" class="" number="" id=""] Notes: See usp_get_images() for inline notes and more infos */ if (!function_exists('usp_gallery')) : function usp_gallery($attr, $content = null) { extract(shortcode_atts(array( 'size' => 'thumbnail', 'format' => 'image', 'target' => 'blank', 'class' => '', 'number' => 100, 'id' => false, ), $attr)); $images = usp_get_images($size, $format, $target, $class, $number, $id); $gallery = ''; foreach ($images as $image) $gallery .= $image; $gallery = $gallery ? '' : ''; return $gallery; } add_shortcode('usp_gallery', 'usp_gallery'); endif;