Skip to content

Instantly share code, notes, and snippets.

@pije76
Forked from buchin/template-contoh.html
Last active August 29, 2015 14:06
Show Gist options
  • Save pije76/899683b9508b31bd36df to your computer and use it in GitHub Desktop.
Save pije76/899683b9508b31bd36df to your computer and use it in GitHub Desktop.
{% api %}
{% for index, item in api %}
{{ item.link | url_to_hyphen | build_permalink_for 2 }}
{% endfor%}
<?php
function url_to_hyphen ($string) {
$string = str_ireplace(array('http://'), '', $string);
$string = str_ireplace(array('.', '/', '%20'), ' ', $string);
return CoreFilters::hyphenize($string);
}
h2o::addFilter('url_to_hyphen');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment