kinglu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Gallery shortcode thumb amountThanks esmi!
But there is no intro about amout settings.
Forum: Fixing WordPress
In reply to: Gallery Shortcode Orderby?Waiting for an answer!
Forum: Fixing WordPress
In reply to: Gallery Shortcode Orderby?Waiting for an answer!
Forum: Fixing WordPress
In reply to: Gallery ShortcodeThanks esmi!
I found out what problem is, i use the sandbox template frame, it’s function.php has override the default template. so i need going to modify the function.php of sandbox, not default wp-includes/media.php.
Thanks again!
Forum: Fixing WordPress
In reply to: WordPress automatic transfer some characters in contentThank you esmi!
i always use the HTML mode to edit the post content, but the problem still exist.
Forum: Fixing WordPress
In reply to: Home page like Hypebeast.comuse ‘the_excerpt’ and DIY a more tag, 😀
Forum: Fixing WordPress
In reply to: Home page like Hypebeast.comphp code for replace <p> and <img> tags below:
<?php ob_start(); the_content('more',true); $patterns[1] = '/<img[^>]+./'; $patterns[2] = '/<p[^>]+./'; $replacements[2] = ''; $replacements[1] = ''; $postOutput = preg_replace($patterns, $replacements, ob_get_contents()); ob_end_clean(); echo $postOutput; ?>but only one </p> tag leave over, i have no idea where is wrong.
Forum: Plugins
In reply to: Custome thumbnail in topic list?rudolf45, can you show me an example code like kineda.com?
Forum: Plugins
In reply to: Custome thumbnail in topic list?Thanks man!
i’ll test it on my site! 🙂Forum: Plugins
In reply to: Thumbnail on index.php to Full Size Image in Posti have the same question with you, supremius.
i wants to make my site to like what kineda.com does!