Show users' pictures in WordPress


/ Published in: PHP
Save to your folder(s)

Show a user picture in wordpress


Copy this code and paste it in your HTML
  1. // Mostrar imatge d'usuari
  2.  
  3. function foto_usuario($que_usuario){
  4. $blog_url = get_bloginfo('url');
  5. echo'<img class="foto" alt="' . $que_usuario . '" src="' .$blog_url . '/wp-content/themes/.../img/.../' .$que_usuario. '.jpg" />';
  6. }
  7.  
  8. Así de sencillo y básico… y para insertarlo donde necesito:
  9.  
  10. <?php foto_usuario('usuario'); ?>

URL: http://www.yukei.net/2007/10/php-te-facilita-la-vida/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.