Template Tweak or Filter Request
-
I want to get rid of the square brackets
[]
and pipes|
surrounding the attachment actions / links. I would simply trim this line incode/attachments/front.php
:$actions = ' ['.join(' | ', $actions).']';
to
$actions = join('', $actions);
or
$actions = '<ul>'.join( '\n', array_map( function($a) { return "<li>$a</li>"; }, $actions ) ).'</ul>';
Or maybe provide us with a hook to filter?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Template Tweak or Filter Request’ is closed to new replies.