¿Está buscando una manera de listar sus categorías pero separarlas en dos columnas? Si bien es probable que haya un plugin para esto, hemos creado un fragmento de código rápido que puede utilizar para enumerar las categorías en dos columnas en WordPress.
Instrucciones:
Todo lo que tienes que hacer es añadir este código al archivo index.php de tu tema:
<?php $cats = explode("<br />",wp_list_categories('title_li=&echo=0&depth=1&style=none')); $cat_n = count($cats) - 1; for ($i=0;$i<$cat_n;$i++): if ($i<$cat_n/2): $cat_left = $cat_left.'<li>'.$cats[$i].'</li>'; elseif ($i>=$cat_n/2): $cat_right = $cat_right.'<li>'.$cats[$i].'</li>'; endif; endfor; ?> <ul class="left"> <?php echo $cat_left;?> </ul> <ul class="right"> <?php echo $cat_right;?> </ul>
Nota: Si es la primera vez que añades fragmentos de código en WordPress, consulta nuestra guía sobre cómo añadir correctamente fragmentos de código en WordPress, para no romper accidentalmente tu sitio.
Si le ha gustado este fragmento de código, por favor considere revisar nuestros otros artículos en el sitio como: 9 mejores plugins de subastas para WordPress y cómo configurar el seguimiento de descargas en WordPress con Google Analytics.
Nope, doesn’t work,
Warning: Undefined variable $cat_left in…
Warning: Undefined variable $cat_right in…
Thanks for this, I was excited to try it out but I got a parse error when I pasted into my custom-snippets plugin I created from another one of your articles, I did double check everything but I am pretty new to all this sorry. unexpected >
Maybe this code no longer works? I tried editing out the unexpected end but perhaps I need to clear the cache before reactivating?
Thanks Kevin,
I knew I read this somewhere but had trouble finding it again when searching the snippet library it didn’t seem to come up.
Perhaps I’m just going blind!
I do have a habit of clicking Shazam on my phone when I really want Simplenote.
This is great and works perfectly – thanks for sharing
No problem Chris, glad to see you like the snippet.