MichaelH
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Featured listThat looks okay, but you probably need
order=ASCForum: Themes and Templates
In reply to: How to make my post titles linked to its pagesOops sorry, that was the showcase post.
Later in that file I changed
<h2 class="contentheading"><?php the_title(); ?></h2>to
<h2 class="contentheading"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>But by now you are seeing what it takes to make a title be a link, so if there are other places in that theme where the title is not linkable you have the basis to change it.
Please review the following articles:
Stepping Into Templates
Template Tags
Template HierarchyForum: Everything else WordPress
In reply to: Use WordPress for non BlogsSounds good.
Forum: Everything else WordPress
In reply to: Use WordPress for non BlogsThen this mobile version code is the one we can use to be hosted in our servers right?
Not sure if that’s the correct way to say it. Just install WordPress on your server, then install WP Touch.
Also some themes you might consider:
http://wordpress.org/extend/themes/search.php?q=mobileForum: Themes and Templates
In reply to: How to make my post titles linked to its pagesOkay, in that theme’s index.php change this:
<h1><?php the_title(); ?></h1>to
<h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>Marking this resolved.
Forum: Themes and Templates
In reply to: Featured listHere’s one example from yesterday that you could learn from:
http://wordpress.org/support/topic/wp_query-ordered-by-post-id-but-not-date?replies=7#post-2215361See also http://codex.wordpress.org/Class_Reference/WP_Query
Forum: Everything else WordPress
In reply to: Use WordPress for non Blogsa) many people don’t use WordPress to blog but just to act as a CMS for their business.
b) the code is provided to you. See the Download tab. As long as your server meets the requirements you can run WordPress on that server. You can modify and change whatever code you want.See Hosting_WordPress for server requirements
Forum: Fixing WordPress
In reply to: What is the Best Backup optionHere’s one of many
http://www.linuxhelp.net/guides/cron/Forum: Fixing WordPress
In reply to: problem displaying 3 level deep page hierarchyAfter this line
$value = implode(',', $parent_id);
couldn’t this work$wlp_param_list='exclude=' . $value; wp_list_pages($wlp_param_list);Forum: Fixing WordPress
In reply to: Fatal error after WP updateForum: Fixing WordPress
In reply to: "Easy there homey" and updating the PHP versionMost likely would need to talk to your host to get PHP updated.
Forum: Installing WordPress
In reply to: Stop frequent updates!Most of the problems reported with 3.2 have been related to plugin and theme incompatibility.
For bugs that will be fixed in 3.2.1 see http://core.trac.wordpress.org/report/3 and if you have any other bugs to report, please do so.
Forum: Fixing WordPress
In reply to: accidently deleted the blog post….how do it get it back?Well if you sent that to ‘trash’, then under All Posts, click on the Trash filter and then Restore it.
Otherwise you may have to depend on google cache to recover that — search google for specific text in that post and maybe you’ll find it.
Also if you have a database backup you could edit that database file with something like NotePad+ and get the text.
Forum: Themes and Templates
In reply to: [Yoko] Yoko – remove tagsLook in the content.php file for something like:
<?php $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ): ?> <?php printf( __( 'Tags: %2$s', 'yoko' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?> | <?php endif; ?>Forum: Fixing WordPress
In reply to: Publishing to a categoryYou may need to check your Screen Options for Adding/Editing a Post and make sure the Categories box is checked.