Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. //show wordpress site title
  3. bloginfo( 'name' );
  4. //show wordpress homepage url and support multi language
  5. echo esc_url( home_url( '/' ) );
  6. //page or post title
  7. the_title();
  8. //show the content of page or post
  9. the_content(); // should be inside loop
  10. //post thumbnail into src
  11. the_post_thumbnail_url( 'xxx' ); //replace xxx with image size
  12. //show auther name
  13. the_author();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement