How can I get the wordpress parent category description. I want to add it to my sub category pages in wordpress?

I'm not exactly sure what you are asking. In Wordpress images are not associated with categories, but are stored on the web server in a separate folder. If you have uploaded the images with the built-in Media tools in Wordpress, you can find the direct links to your images there.

However, it sounds like you are trying to build something into a template that will automatically generate the image on your pages/posts. If I understand, you want to refer to the root folder no matter what level of the site you are on? If that's the case, you can simply use the domain name to indicate to Wordpress that the file you are referring to is on the root level.So, if you place the following code in your template file, it doesn't matter what page or post you're on, the image will be displayed: If you are trying to dynamically generate the domain name, without typing it directly, you could use PHP and the bloginfo() variable in in your template: /MyImage.

Jpg" /> If the image is located in the root folder of your template folder and NOT your root installation folder, you can use the template_url function of bloginfo(): /images/MyImage. Png" /> I had to add spaces to the above code so that Mahalo wouldn't remove the tags.Be sure to delete the extra spaces. If this is not what you're looking for, let me know and I'd be more than happy to help you further.

I never used a blog website like word press but I found this website that provided a code for "parent category name" which I'm assuming that what you were looking for. Category_parent); if (!empty($parent)) { echo '» ' . $parent; } else { echo '» ' .

$category0->cat_name; }? > Anyway this is the source, tell me how it goes so I can help again. ;) corpocrat.com/2008/10/31/how-to-get-pare....

Check out this site for the proper instructions to fix your problem, the details are pretty clear. wpbeginner.com/beginners-guide/how-to-ad....

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions