Skip to content

Instantly share code, notes, and snippets.

@kijtra
Created June 29, 2011 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kijtra/1053495 to your computer and use it in GitHub Desktop.
Save kijtra/1053495 to your computer and use it in GitHub Desktop.
[WordPress] wp_list_pages()の出力の際、リストタグのclass属性にページスラッグを追加する
<?php
add_filter(
'page_css_class',
create_function(
'$css_class,$page',
'$css_class[]=$page->post_name;return $css_class;'
),
10,
2
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment