rxbbx
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spun] Where to paste page to post solution?Thnx new013 … if you modify the code a bit you have several options. You can also specify which page in which order you want to have displayed.
<?php $args = array('post_type' => 'page', 'order' => 'asc', 'post__in' => array(id nr page, id nr page, id nr page, etc)); query_posts($args); ?>There are many options with post_type=page..
Forum: Themes and Templates
In reply to: [Spun] Opera and Spun ThemeFound it
.blog .hentry a, .archive .hentry a, .search .hentry a { /*content: "";*/ display: block; width: 100%; height: 100%; z-index: 10; }Thnx again..
Forum: Themes and Templates
In reply to: [Spun] Opera and Spun ThemeThnx for your answer.. maybe time to update the theme.. don’t you think and then make a buy version and free version.. next step.. i like the underscores theme.. nice stuff overthere..
Forum: Themes and Templates
In reply to: [Spun] Where to paste page to post solution?He juanrose.. it’s not that hard to solve. If you only want to have pages in stead of posts on your frontpage you have to edit the index.php file in the spun folder > wp-content\themes\spun\index.php
<?php /* Display Pages */ ?> <?php query_posts('post_type=page'); ?> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', 'home' ); ?> <?php endwhile; ?>Just add
<?php query_posts('post_type=page'); ?>before the original loop starts..
That way the circles display only the pages, nice for a website with only a few pages who doesnt want to blog or write articles. If you uncomment the main navigation you could even use it as main menu.
Forum: Themes and Templates
In reply to: [Spun] Replace Posts with Pages on the FrontpageSimple solution:
edit index.php file located in theme folder:
<?php /* Display Pages */ ?> <?php query_posts('post_type=page'); ?> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* Include the Post-Format-specific template for the content. * If you want to overload this in a child theme then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'content', 'home' ); ?> <?php endwhile; ?>Simply add:
<?php query_posts('post_type=page'); ?>Displays the pages in stead of posts at the frontpage in the circles..
Forum: Themes and Templates
In reply to: [Spun] Replace Posts with Pages on the FrontpageFound the solution by edit the loop in the index.php file and use Class Reference/WP Query : http://codex.ww.wp.xz.cn/Function_Reference/WP_Query
Forum: Themes and Templates
In reply to: [Spun] Replace Posts with Pages on the FrontpageI know, but i will first try to rewrite the php code and use page id in stead of the post id. It are only a few lines of code.
I just want a static frontpage and use the circles as the main menu.
Forum: Themes and Templates
In reply to: [Spun] Replace Posts with Pages on the FrontpageThnx for your quick answer.. maybe it would be an idea to create this possibilty in the admin dashboard.. i will try coding pages at the home page in stead of posts..
My second solution is the quickest, i know it, but i like to code..
Thnx for your time and respond, nice clear theme by the way..
Forum: Fixing WordPress
In reply to: Lost Connection MySql after PublishingUpdate: My over aged Pinglist at that specific blog seems to cause the problem. Updated it.
Forum: Requests and Feedback
In reply to: Bug? Formatting for object or embed tagsworks good.. thnx only close the img and param to get it valid too.. but the issue with the xtra code is gone
Forum: Requests and Feedback
In reply to: Bug? Formatting for object or embed tagsI have the same issue.. when i embed flash.. i turn the rich editor off and use the embed tags. Its xhtml valid normally. Everything works perfect, except validating. I get an extra between my lines of code if you look at my source from the page.
Forum: Fixing WordPress
In reply to: Image Upload tool inserts thumbnail size only?This should be a sticky.. I think many people are searching for this answer. It’s really a IE problem.
Forum: Fixing WordPress
In reply to: No cache created by WordPress 2.0.2should be sticky… many people don’t read this..
they think everything works without adding the code..