LIMEXS
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't see anythigng after updating my word press blogHave you tried to access home after disabling all plugins?
Forum: Fixing WordPress
In reply to: Cannot change permalinksYou can find .htacess in root of wp installation. firstly change, the theme to default theme and then try again (may be you put some redirect header in theme code and forget about it)
Forum: Fixing WordPress
In reply to: Cannot change permalinksYour page is redirecting to home. Please, check theme code or any custom plugin.
Forum: Fixing WordPress
In reply to: Sidebar WidgetI’m willing to help you but need further details.
Forum: Themes and Templates
In reply to: Date of post??
<div class="date><?php the_date();?></div>
is correct. place it where you want but keep it inside loop<?php while(have_posts()) : the_post(); ?>
…
<?php endwhile; ?>
NEW CODE:
<body> <!-- WRAPPER --> <div id="wrapper"> <!-- BG WRAPPER --> <div id="bgwrapper"> <!-- HEADER + MENU --> <?php get_header(); ?> <!-- CONTAINER --> <div id="container"> <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <div class="date><?php the_date();?></div> <h2><?php the_title(); ?></h2> <div class="entry"> <?php the_content(); ?> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> <?php edit_post_link('Edit', '<p>', '</p>'); ?> </div> </div> <?php endwhile; ?> <?php else : ?> <div class="post"> <h2><?php _e('Not Found'); ?></h2> </div> <?php endif; ?> </div> </div> <!-- FOOTER --> <?php get_footer(); ?> </div> </body>
Forum: Themes and Templates
In reply to: Date of postYes, esmi is correct, we can simply use the_date() or the_time() between
<?php while(have_posts()) : the_post(); ?>
…
<?php endwhile; ?>
Forum: Fixing WordPress
In reply to: Allow several custom fields to save multiple valuesI understand what you need.
use same meta fields in following pattern save and recall custom fields:
Parent_key: propertie-something
Child_key: propertie-something_method
Child_key: propertie-something_unit
Child_key: propertie-something_valueForum: Themes and Templates
In reply to: Date of postYou’ll need to edit page template. Inside loop use $post->post_date.
If it is not helpful, please, give the code of page.php and place you want to put date.
Forum: Fixing WordPress
In reply to: Will Switching to Permalinks Affect Older Posts?You might have noticed that even after changing the permanent link post is accessible using both links
Forum: Themes and Templates
In reply to: Date of postplease, use $post->post_date
Forum: Fixing WordPress
In reply to: Will Switching to Permalinks Affect Older Posts?In most situations NO.
Please, use images in png format
Forum: Fixing WordPress
In reply to: making the post in order of A to ZYes, use
order_by -> 'title', order -> 'ASC'
to query posts
??
?? Sorry if it was difficult to interpret
you can use following
<?php if ( is_front_page() ) { echo '<img src="path/to/image" />'; } else { while ( have_posts() ) : the_post(); } ?>