Template Tags are special functions that let us get access to WordPress content and data.
the_
versusget_the_
- e.g.
the_title()
echoes the title - e.g.
get_the_title()
returns the title
- e.g.
- Template Tag Parameters:
func(<before>, <after>, <echo>)
- e.g.
<?php the_title( '<h1>', '</h1>' ); ?>
- e.g.