philco
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: display title or excerpt, then link to full contentmy apologies, consider me told. the theme is “fspring_widgets”
i actually found an answer and added an old javascript trick to make back and forth easier…
<?php
if (is_single()) {
the_content(__(‘Read more’));
echo “Back to Index<p>”;
} else {
the_excerpt();
}?>here’s the link to the topic that gave me my answer…
Forum: Fixing WordPress
In reply to: Where’s the content???Michael, thanks for that. it raised more challenges!
Forum: Plugins
In reply to: How to add a warning page or squeeze page?a simple solution for a splash, landing, or entry page, that does not require setting cookies, is to first create a new folder “YOURBLOG” and move all the files from the top level into that folder.
then create a new index page at the root of the site with your warning and link that to “YOURBLOG” (relative link).
in the WP admin, just go to options and change the URLs to your site from
“http://www.YOURSITE.com”, to
“http://www.YOURSITE.com/YOURBLOG”viola
Phil
Forum: Developing with WordPress
In reply to: same blog, different sitesthanks for that. i’ll give a shot.