New Genesis child theme or revise current Genesis child theme [closed]

I do agree with Aaron’s thoughts on “It all depends on the amount of changes required”. Still. I would use a slightly different work-flow. Meaning: Keep my original child theme (old-child) intact. Create a new folder and copy the whole old-child content in it making an exact replica. Do NOT refresh your themes screen just … Read more

how to use the_excerpt for two post queries?

function excerpt($limit) { $excerpt = explode(‘ ‘, get_the_excerpt(), $limit); if (count($excerpt)>=$limit) { array_pop($excerpt); $excerpt = implode(” “,$excerpt).’…’; } else { $excerpt = implode(” “,$excerpt); } $excerpt = preg_replace(‘`\[[^\]]*\]`’,”,$excerpt); return $excerpt; } write below code in your template. <?php echo excerpt(25); ?>

WordPress URL Problems and Layout

The page you set as the “Front Page” in Settings -> Reading is going to show up here– http://localhost/mysite/— no matter what its address might otherwise be. I can’t tell if you want that address or this one, though: http://localhost/mysite/home/ I can tell that the template is broken. The $args variable here: query_posts( $args ); … Read more