Guest User

archive style

a guest
Nov 7th, 2014
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2);
  2. function avia_change_archive_blog_layout($layout, $context){
  3. if($context == 'archive') $layout = 'blog-grid';
  4. return $layout;
  5. }
Advertisement
Add Comment
Please, Sign In to add comment