mattrogers123
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 Error when validating podcast feedI recommend using Blubrry PowerPress Podcasting plugin it works rather well and I never had a problem with submitting my rss feed to iTunes
Forum: Fixing WordPress
In reply to: How to unbold text in general posts area?looks for something in the css that is like this,
p { something: something; something: something; font-weight: bold; }change bold to normal or delete the whole line, If it is effecting the whole page then you can add this to the body tag in css,
body { font-weight: normal; }However its hard to tell what the problem is, if you post a link to your website I can have a closer look at the code and tell you where it is.
Forum: Fixing WordPress
In reply to: RSS Widget Open in new tabyou can do it using javascript however that would be a lot of effort to go to for such a minor thing.
The reason that you can not give a target like “_blank” in css is due to the fact that people don’t like links opening in new pages. In most cases if they want to open it in another tab or window they will do.
Forum: Your WordPress
In reply to: Relativity 1.1 minimal widget theme using CSS3thanks thats what i had in mind. I will be updating it aswell with other features as I develop it further
Forum: Fixing WordPress
In reply to: RSS Widgetthis may be of help you could add this into the text widget, have a look at this article for more details.
<?php include_once(ABSPATH.WPINC.'/rss.php'); // path to include script $feed = fetch_rss('http://domain.com/feed'); // specify feed url $items = array_slice($feed->items, 0, 10); // specify first and last item ?> <?php if (!empty($items)) : ?> <?php foreach ($items as $item) : ?> <h2><a href="<?php echo $item['link']; ?>"><?php echo $item['title']; ?></a></h2> <p><?php echo $item['description']; ?></p> <?php endforeach; ?> <?php endif; ?>Forum: Fixing WordPress
In reply to: RSS WidgetSo you want to list 10 items from 20 – 30 website RSS feeds?
Forum: Your WordPress
In reply to: Help Me Out?it depends if they are widgets or if they are in sidebar.php
if they are in widgets then go to appearance > widgets and they should all be visible on the right hand of the screen all you have to do then is edit the titles.
If they are in the sidebar.php, then go to appearance > editor.php and then look for the file that is called sidebar.php from there of course if you are familiar with html you could be able to find the titles and change them.
Forum: Themes and Templates
In reply to: How to list sub-categorie’s post in the parent category ?I think you have worded this question wrong. The sub-category ‘dog’ should only list the posts that are in it. Where as the parent category should list ‘animal’ which of course includes ‘dog’.
if the sub-category ‘dog’ was to list all the posts made under ‘animal’ it would make the whole point of the sub-category pointless.
Forum: Themes and Templates
In reply to: Showing previous post on homepagecan you post a link to your site?