Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Template Tags

Overview

Template Tags are special functions that let us get access to WordPress content and data.

  • the_ versus get_the_
    • e.g. the_title() echoes the title
    • e.g. get_the_title() returns the title
  • Template Tag Parameters: func(<before>, <after>, <echo>)
    • e.g. <?php the_title( '<h1>', '</h1>' ); ?>


General Tags