Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
r171 return page title
#5
Zegnåt Wrote:
trilulilu17 Wrote:But I have to ask what is this useful for? I can find it useful for a plugin, but for a template?
Code:
if (trim(return_page_title())!='') { echo '<h1>'.return_page_title().'</h1>'; }
This will check whether a page title exists before trying to output it, this way you won’t be outputting an empty H1 element if no title is given. It also shows that return_page_title() is the one you’ll want to use within an echo statement.

Or maybe you want to use Shaun Inman’s Widon’t:
Code:
<h1><?php echo preg_replace('|([^\s])\s+([^\s]+)\s*$|', '$1 $2', return_page_title()); ?></h1>

As long as these kind of things exist and will be created in the future you’ll want to be able to pass the title into your own PHP code within a template. At least that’s what we think and that’s why the return_ functions are included.

I see it now. Thank you!
Reply


Messages In This Thread
r171 return page title - by trilulilu17 - 2010-07-26, 22:13:56
r171 return page title - by Carlos - 2010-07-26, 23:55:47
r171 return page title - by trilulilu17 - 2010-07-27, 16:26:45
r171 return page title - by Zegnåt - 2010-07-27, 17:23:15
r171 return page title - by trilulilu17 - 2010-07-29, 15:01:37



Users browsing this thread: 1 Guest(s)