• Noobie here… I’ve been looking for short codes for a child theme and the closest that I’ve found so far is at http://en.support.wordpress.com/shortcodes/ which doesn’t cut it. What I’m trying to do is remove comments, posts, etc. to make themes look like a website vs a blog. I know how to edit the template to make such changes, but was hoping for short cuts like this:

    .post-meta {
    display: none;
    }

    Your help is greatly appreciated!

Viewing 1 replies (of 1 total)
  • You really shouldn’t try to hide content like that with CSS- a big Google/SEO no-no.

    You need to take the templates files from your Parent Theme into your Child Theme folder that you want to change and physically remove any code that don’t want to show up.

    But, comments can be disabled from the WP Settings panel.
    You don’t have to have Posts, just create Pages and set your home page to Static instead of Recent Posts.

    With your Child Theme – the most you might need to do is remove the Contact Form (Leave a Reply) code from any template files you don’t want to have it (i.e. single.php, index.php, page.php, etc.)

Viewing 1 replies (of 1 total)
  • The topic ‘List of Short Codes for Child Themes?’ is closed to new replies.