RoanokeVaGuy
Forum Replies Created
-
Forum: Reviews
In reply to: [Social Share Icons & Social Share Buttons] Ultimate Social Media PLUSThis plugin definitely met my needs. Keep up the great work!
Forum: Fixing WordPress
In reply to: Can't get page text content to show upHere it is:
`<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other ‘pages’ on your WordPress site will use a
* different template.
*
* @package WordPress
* @subpackage Star City Creations
* @since Star City Creations 1.0
*/get_header(); ?>
<div id=”primary”>
<div id=”main”><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘content’, ‘page’ ); ?>
<?php comments_template( ”, true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!– #main –>
</div><!– #primary –><?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Can't get page text content to show upHere is what my index.php code looks like:
`<?php get_header(); ?>
<div id=”main”>
<div id=”content”><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<h4>Posted on <?php the_time(‘F jS, Y’) ?></h4>
<p><?php the_content(__(‘(more…)’)); ?></p>
<hr> <?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
<div id=”delimiter”>
</div>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Can't get page text content to show uphttps://starcitycreations.com/testing/
This is a theme I am trying to create from scratch.
Forum: Fixing WordPress
In reply to: Can't get page text content to show upWhich template of the site should I put here to show that?
Forum: Fixing WordPress
In reply to: Can't get wordpress theme built from scratch to center on the screenSorry about that. Here is the link:
That fixed it!!! Thanks so much!!!
Here’s a link to the front page of it. It’s still in the rough, working stages and will be moved to a better address later.
https://eaglemotorcompany.com/wordpress/
You will see the page height needs to be adjusted from page to page. How do I do this?
Thanks,
Rob