I am using a theme using sprintf which I am very new to. I cannot get custom support from the developer on this so I am trying to figure it out on my own.
Not understanding how sprintf works, I've Googled loads of pages trying to find a fix to what I thought would have been simple.
The theme uses %s to load a text string, in this case the title of the page. I just want the title to link to the page! That's it! No less, no more. I was able to come up with something close below:
// Featured columns
case 'columns':
$count = Website::getThemeOption('front_page/columns/count');
$classes = array('one', 'two', 'three', 'four');
$columns = array();
for ($i = 0; $i < $count; $i++) {
extract(Website::getThemeOption('front_page/columns/column/'.$i, true)->toArray());
$text = DroneFunc::stringToHTML($text, false);
if ($more && $link) {
$text .= sprintf(' <a href="%s" class="more">%s</a>', $link, $more);
}
$columns[] = sprintf(
'<li class="column">'.
'<img src="%s/data/img/icons/32/%s" alt="" class="icon">'.
'<h1><a href="%1$s">%s</a></h1><p>%s</p>'.
'</li>',
Website::get('template_uri'), $icon, $title, $text
);
}
?>
<section class="columns <?php echo $classes[$count-1]; ?> clear">
<ul>
<?php echo implode('', $columns); ?>
</ul>
</section>
<?php
break;
Now originally, there was no hyperlink reference... I added that in. What this does now is make the h1 title clickable but it just goes to the root of the theme folder, not the title's page.
Any help in understanding this and making it work would be greatly appreciated.
sprintfsnippet! Have you checked out the PHP docs on it? – TheDeadMedic Jul 19 '12 at 16:59