• hi,please

    How May I Show Only The Users Photos on WordPress?

    Please, if you know how can i do this, say to me as soon as you can.

    thank you

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello,

    Could you tell me a little more about the problem that you’re having?

    Regards

    KC

    Thread Starter felipexx85

    (@felipexx85)

    i want to show only users photos , just show all users photographys , a command to show. i dont know how to do this…

    Thread Starter felipexx85

    (@felipexx85)

    User profile images, show all users profile images, has some wordpress command to do this ?

    Hello,

    Base on my understanding to your question. I believe you are looking for a WordPress photography theme to showcase your photography work. You may start searching for a theme in the WordPress theme directory or purchase premium themes from 3rd party Websites.

    To install a theme, follow the instructions here https://codex.www.ads-software.com/Using_Themes.

    Regards

    KC

    Thread Starter felipexx85

    (@felipexx85)

    No, i have a theme, in my website, https://encontroenamoro.com.br , i just want to get all photos of all profiles, and do a galery, with photos of all users.

    thank you.

    Thread Starter felipexx85

    (@felipexx85)

    how do i select only people has photos on this code below :

    <?php
    function contributorsbottom() {
    global $wpdb;
    
    $authors = $wpdb->get_results("SELECT ID, user_nicename  from $wpdb->users ORDER BY RAND() LIMIT 12");
    
    foreach($authors as $author) {
    
    ?>
    
    <a title="<?php the_author_meta('display_name', $author->ID);?>" href="<?php get_bloginfo('url')?>/members/<?php the_author_meta('user_nicename', $author->ID); ?>"><?php echo get_avatar($author->ID,50); ?></a>
    
    <?
    
    }
    }
    
    ?>
    
    <?php contributorsbottom(); ?>

    This code is very good
    if u know, tell me as soon as u can.
    thank you.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How May I Show Only The Users Photos on WordPress’ is closed to new replies.