Here I show you how to turn the basic HTML and CSS site we made previously into a WordPress News Theme.

This WordPress Theme will make for a very professional WordPress Site. It can also serve as a starting off point for another Blog Design.

All of the Code is Here: http://goo.gl/NYCUW

source

22 Comments

  1. I'm unfamiliar with a firewall plugin. I actually have experience securing a small VPS, and fiddling around with CloudFlare/Dome9. Oh, I did installed WP Security plugin.

    P.s. The default picture isn't showing up in catch_that_image. It's probably a localhost error? The function works, but doesn't show a default picture.

  2. You're very welcome 🙂 If you add a firewall plugin to your wordpress site, you shouldn't have to worry about security. Just make sure you don't provide people with any way to access your database and you'll be fine

  3. I kinda get it; I don't understand where you got/made that variable, "$ntt_the_excerpt". In a couple of videos back you said, "It's frowned upon to change global variables". So now I'm looking for alternative ways. I end up landing on the WordPress codex, and found a function limiting characters with the_excerpt(); using the blankslate theme.

  4. Thank you very much 🙂 This is the code that handles the excerpts $ntt_the_excerpt = $post->post_excerpt; echo substr($ntt_the_excerpt, 0, 50); It basically spits out an excerpt with 50 characters. Please elaborate on your $wp_query question. I'll try to help

  5. Long time fan, first time poster. I would like to start by saying thanks for your hard work. Some people are just natural teachers. I can't begin to tell you how much I learned! Keep on truckin – as if you would ever want to stop truckin! Here's a semi-student review; at this point I'm still having trouble echoing excerpts with character limits, lol… I also have one desperate question. Is there any other methods around $wp_query = null;

  6. I am following your video and copying the code as you type it in the video, but I found what it does not like.
    $wp_query->query(‘posts_per_page='5''&'category_name=Featured’);?>
    it does not like the & if I remove that and just have it as $wp_query->query(‘posts_per_page=5);?>
    it works fine.
    Good way to learn that is for sure.

  7. Have you tried using my exact code? I'm not sure if you may have changed anything. I just checked and the theme still works. It is normally best to download all of the code and then check as you make changes. WordPress can get kind of funny, but I didn't touch any of the core WordPress files so upgrades they make should have no effect. Sorry this isn't working better for you 🙁

  8. I am stumped again, when I add the database code as you do, the page does not load, there is nothing there at all, just blank. When I remove the database code it loads, what is causing this?

  9. When I copy the code you give for the first image thumbnail in functions it causes a php error at line 21: $output = preg_match_all(‘//i’ Why would this be? I notice in notepad+ that everything is grey after that line . . . not a good sign. I did copy it to notepad then to notepad++.

  10. Derekbanas, thanks for the tutorials
    I, and I guess many others appreciate the time and effort you put into them.
    It's refreshing the straight to the point style you produce.

    Cheers, John

Leave A Reply

Please enter your comment!
Please enter your name here