











add_shortcode('hkk_user_post', function(){
    if (!is_user_logged_in()) {
        return '<p>Please log in to see your posts.</p>';
    }

    $current_user_id = get_current_user_id();

    $args = array(
        'author'      => $current_user_id,
        'post_type'  => 'post',
        'post_status' => 'publish'
    );

    $user_posts = get_posts($args);

    if (empty($user_posts)) {
        return '<p>You have not uploaded any posts yet.</p>';
    }

    $output = '<ul>';
    foreach ($user_posts as $post) {
        setup_postdata($post);
        $output .= '<li>';
        $output .= '<h3>' . get_the_title($post) . '</h3>';
        $output .= get_the_post_thumbnail($post, 'thumbnail');
        $output .= '<p>' . get_the_content($post) . '</p>';
        $output .= '</li>';
    }
    $output .= '</ul>';
    wp_reset_postdata();

    return $output;
});

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://hugmyplant.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://hugmyplant.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://hugmyplant.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://hugmyplant.com/wp-sitemap-posts-product-1.xml</loc></sitemap><sitemap><loc>https://hugmyplant.com/wp-sitemap-posts-sureforms_form-1.xml</loc></sitemap><sitemap><loc>https://hugmyplant.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://hugmyplant.com/wp-sitemap-taxonomies-product_cat-1.xml</loc></sitemap><sitemap><loc>https://hugmyplant.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
