• Hey, I’m a noob to modifying the php, and I’m just looking to have a copyright at the bottom of the home page. I don’t even have enough posts yet to know if it’s infinite scrolling, but if it’s doing that I want to turn that off too so that it only shows the most recent few (don’t care how many specifically, really, just want it dynamic). Is there an easy way to do that in settings, or an easy snippet of code to paste in to the php?

Viewing 1 replies (of 1 total)
  • To add a copyright to your credit you can use some custom CSS – no need to touch the PHP!

    Something like this should work:

    #site-generator:before {
      content: "Copyright 2015 My Name | ";
    }

    Don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.

    An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.

    As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Home page footer’ is closed to new replies.