Tagged Questions
0
votes
1answer
131 views
How to list only child categories?
Is there any way to list the child categories only? I just want to filter the Parent Categories
0
votes
0answers
133 views
Listing categories on multiple columns with sub categories in accordion [closed]
I need a page template where contain all categories with child categories.
Parent category will split within 3 column and parent category name will be accordion tab. If I clicked to the category name ...
0
votes
1answer
381 views
Listing Specific Categories from Current Post with Depth
I've been on this for sometime and been having a ton of issues to find a proper way to do what I'm trying to achieve.
An Example would be as follows:
I have a featured Image with a rollover and I ...
-1
votes
1answer
219 views
how to set category name for a post
how to set category name for post:
this is my code ,this is not working ,why?
$post_title = $vname;
$categ='category name';
$post_content = '[newpage link="'.$videos.'"]';
...
0
votes
2answers
85 views
Categorie parents and childs displayed
I'm trying to create a menu directly hard-coded, basically I need to display the parent category and below its child categories, however I have to do this several times meaning something like this:
...
1
vote
1answer
222 views
List Sub-Categories of a Parent Category
I need to be able to list categories that are the sub-category of a specific category that is a sub-category of a primary category.
So something like this:
Print Categories where ParentCategory = ...
0
votes
1answer
410 views
get_category_link() is returning nothing
<?php
$categories=get_categories('taxonomy=galeriak');
foreach ($categories as $category) {
?>
<li><a href="<?php echo get_category_link( $category->term_id ) ?>" ...