I have the following links:
Category 1
- Link 1
- Link 2
Category 2
- Link 1
- Link 2
I have custom links that open a page that category is called = the name of the category, which is what I lack.
wp_list_bookmarks('title_li=&title_before=<a href="?page_id=">&title_after=</a>&categorize=1&before=<li>&after=</li>&show_images=0&show_description=0&orderby=url');
I have to put after page_id
Currently I get:
<a href="?page_id="> Category 1 </ a>
But I need to get:
<a href="?page_id=Category 1 "> Category 1 </ a>
---
SPANISH
----
Tengo las siguientes Categorías de enlaces:
Categoría 1
- Enlace 1
- Enlace 2
Categoría 2
- Enlace 1
- Enlace 2
Tengo personalizado que los enlaces de categoría abran una pagina que se llama = que el nombre de la categoría, que es lo que me falta.
wp_list_bookmarks('title_li=&title_before=<a href="?page_id=">&title_after=</a>&categorize=1&before=<li>&after=</li>&show_images=0&show_description=0&orderby=url');
Que tengo que poner después del page_id
Actualmente obtengo:
<a href="?page_id=">Categoría 1</a>
Pero necesito obtener:
<a href="?page_id=Categoría 1">Categoría 1</a>