odyodyodys
Forum Replies Created
-
This is really serious. 4 months and no feedback.
Forum: Fixing WordPress
In reply to: How do I sort posts by post__in ?Thanks alchymyth, I am using the plugin at the moment. My question was more about the wordpress core. If I can have that result without using a third party plugin.
I want just to display posts in a specified order.
I could do multiple loops using WPquery but this is a funny solution 🙂Forum: Themes and Templates
In reply to: Custom read-more text wrapped in a divSolution:
Leave everything as TEXT only.
Do Not follow that rule if you want to wrap the text.Do this instead:
Add the following to your functions.php or even better, create a little plugin and do the followingfunction wrap_readmore($more_link) { return '<div class="post-readmore">'.$more_link.'</div>'; } add_filter('the_content_more_link', 'wrap_readmore', 10, 1);This will wrap not only the default “more” text, but also the custom added as
<!--more Start Game-->Forum: Fixing WordPress
In reply to: XML Parsing Error: XML or text declaration not at start of entityThanks “samboll” and “DigitalPresences”.
Blank lines outside <?php ?> in functions.php caused this to my blog too.I do NOT have such plugin installed. All files under wordpress folder aren’t read-only.
Activated plugins:
– Google Analytics for WordPress
– Google XML Sitemaps
– Lightbox JS v2.03.3 Plugin
– Plugin Manager
– TinyMCE AdvancedAny suggestions?
Forum: Installing WordPress
In reply to: Why img tags are turned into Links automatically??I’ve found out that every text is auto truncated to a link.
This is weirdest!!Please help…