Theme Information:
- Description: A 910px, fixed-width, widget-ready theme. Its focus is for news blogs and sites. The template makes it easy to get a lot of information to the user as quickly as possible, but in a stylish way.
- Requirement(s): Wordpress 2.1+
- Support: Support forums
- Download Theme ([download#18#hits]) | Live Demo
Demo is currently down.
Newspaperize in other languages
Currently, I’m considering translating the theme into a few different languages as we’ve done with the Structure WordPress theme. If you want to translate the Newspaperize theme into your language for non-English speakers, feel free to contact me.
Updates:
I’ve added support forums for all my WordPress themes.
- Version 1.1:
Added a thumbnail option to the custom fields to give the theme a little more flexibility.
Created a “category-description” class to adjust the font of the description on category pages. - Version 1.1.2:
Fixed the category.php and archive.php to show the “Previous Stories” correctly.
Features:
- Newspaper- / Magazine-style layout with a customized front page.
- Feature article listed on front page.
- Specific styles for each type of page (category, archive, etc.).
- Customized sidebars for different pages of the site.
- Integrated WordPress 2.3 tag and Related Posts Plugin support.
- Placeholder divs for ads. Great sidebar sizes for Google AdSense ads.
- Four different sidebars that are all widget-ready.
Need To Know:
- It is important that you read the readme.txt file to understand how this theme works. Everything is explained in more detail in that text file.
- See how to use optional excerpts to make a cleaner blog when using this theme.
- Learn how to upload images.
- Read up on using custom fields.
Image of optional excerpt and custom fields:
Recommendations:
- I recommend using the Related Posts Plugin because I’ve added the functionality into the single.php file.
- Get the latest version of WordPress to make use of tags.
Download & Demo:
Thoughts
I started working on this theme way back around April 2007 when I wanted to design a newpaper-style theme. I wasn’t sure which direction to go in then and I’m still not sure now that I’ve completed this project. Of course, I didn’t spend the last several months working on it. I took a very long break. It wasn’t until reading Adii’s article, Magazine Style Themes are here that I realized I wanted to play with my old theme again.
Now, this isn’t exactly a set-in-stone newspaper-style theme, but it’s far different than the typical blog theme. (I would go as far as saying that this is my best work.) I put a lot of hours into this project and almost gave up after several mishaps with alignment (I hate you IE6!!!), but somehow, just somehow, I managed to come up with something that I like, something that can be used for both blogs and news sites, something that doesn’t take a lot of work for the blogger.
I don’t know where I came up with the name “Newspaperize.” I just remember that’s what I wanted to call it when I started in April, and it just kind of stuck. I went through four completely different redesigns before I settled with what we have here. Overall, I’m happy with it. Of course, when little bugs start creeping up, I’ll be frustrated again.
With that said, please report all your bugs in the forums. Not on my About page. Not on some obscure post that has nothing to do with WordPress themes. Here on this post. So, what do you think?
Hi,Love your theme. Just one question, how come when I click on the Archives, say Nov 2006, only the first entry comes out instead of a view same as a search results? Any fix? Regards.
Nicktay, the archive has a special template (the same as the category template) designed specifically for this theme. It is meant to show the most recent post’s excerpt, then the previous posts in an unordered list below it. I hope that’s what you’re seeing.
If you want to make it look just like the search results, you’re going to have to open “archive.php” and “search.php.” Copy this from search.php:
<?php if(have_posts()) :
all the way down to
<?php endif; ?>
Then take what you copied and replace that content in archive.php. Do not delete or copy anything above those two things in either file.
Hi Justin,
Thanks! It works now 🙂
I LOVE YOU, MAN!!!! Exactly what I was looking for!!!
The images appears only on single post page , i can’t make them appeare on main page!!! Very disappointed help me
Mattia, I’m going to need more information from you than that. You should tell me what steps you’ve tried. I hope you also read the “readme.txt” file thoroughly because it lists in detail how to accomplish this.
From what I can tell by looking at your source code for your home.php is that you have deleted the feature post item from home.php. Your images won’t show up without that. You’ll need to upload a fresh copy if that’s the case.
Looking at your single.php, it looks like you’ve manually inputted the picture into your blog post instead of using a custom field as explained in “readme.txt.”
Nicktay, I’m glad every thing’s working like you want it. I live to serve.
Marco, thanks. Send me your link. I’d love to see how you’re using the theme.
Justin,
Very nice. Thank you. I found a couple of glitches in category.php, though.
First,
<?php if (is_category()) { $posts = query_posts($query_string . '&orderby=date&showposts=1'); } ?>
only shows 1 post on the page. I changed the quantity to 1000.
Second,
<!-- post -->
is several lines too far down in the file. It is actually outside the loop. I moved it to be immediately after
<!-- entry -->
Cheers,
— Art Z.
Art, I understand how you could think that the “showposts=1” is a mistake, but it’s actually what I intended to do.
Your category and archive pages should show the excerpt from the most recent post, then have an unordered list of later posts below that. (Two separate loops.)
I didn’t really see any problem with the “entry” div either. But, that could be because the structure is different than normal themes. Check out the demo and look at what the category page looks like there.
It can be a little confusing. It was, even to me, while I was putting it all together. If you have any other questions or problems, feel free to drop me a line. I’d be more than willing to help.
Hi Justin, me again. I really like this theme, but I want to create a page for my Archives, Months or Topics separated. Is there in any way I can do these in this theme? Much appreciated.
I’m confused. I uploaded and installed/configured the Related Posts plugin…but nothing shows up.
When you say the single post.php is preconfigured this means I don’t need to edit the template as the plugin install suggests..yes?
So why isn’t it working for me?
ok added php tag now it works. Nevermind.
April, single.php isn’t configured to use Related Posts, but single-sidebar.php is. It pulls the related posts into the sidebar. So, if you’ve changed the sidebar, it wouldn’t work correctly.
K, do you want to create an Archives Page, Months Page, and Topics Page? Or, do you want to create templates for each of these? There are already a templates for these called archive.php (which includes tags) and category.php. If you want to do the former, I can help, but there are several different ways to do that (plugins, different ways to code and layout).
Also, category.php and archive.php have been updated (there was a small bug, well a big bug in the previous version).
Hi Justin, I want to create a Page template (that sits on the Top Navigation for my Archives/Post by month-days or topics so that my readers can easily browse to my old posts.
Thanks.
K, from what I understand, you want a link to your archives, categories, etc. on your menu across the top of the page. You need to add a link to the page you want to display in “top-nav.php” to do this.
The link code (change the permalink ID to your Archives Page ID):
<li<?php if (is_page('Archives')) { echo " id=\"current\""; } ?>>
<a href="<?php echo get_permalink(2); ?>" title="<?php _e('Archives'); ?>">
<span><?php _e('Archives'); ?></span></a>
</li>
A tutorial on how to create your Archives Page and template can be found here: Creating and archive index. I personally use the SRG Clean Archives Plugin. Justin Blanton’s Smart Archives is another popular plugin.
There are plenty of other tutorials on how to piece together archives and category archives. I hope this at least helps some, or maybe points you in the right direction.
Thanks SO MUCH, I got it all to work.
You are so generous.
I’m glad you got everything working like you wanted K. Don’t hesitate to ask if you have any other questions.
Very nice! I’m looking for a way to have several columns and rows, each “cell” with an article from a different category, instead of one big section for news… Your theme is a step in the right direction for that…
S, use the contact form to get in touch with me. Let me know in a little more detail what you want done, and I’ll see what I can do. I’m always looking for ways to improve my themes. If I don’t hear back from you in the next few days, I’ll send you an email.
And I’m sticking with your Newspaperize theme (including widget support). I’ve tested a few themes lately bur I keep turning it back with your Theme. I think newspaper/magazine wordpress theme are by far unique than the “default” two sidebars theme.
My question is, how do I change the text-style? Adding header images?
Thanks Justin for sharing this theme. I’ll remain loyal to your theme unless you create more (for free).
K, I actually have a tutorial on creating clickable header images. You might want to check that out.
When you say “text style,” I take it you mean “font family”? You can find this code under “body” in style.css:
font: 85% "Trebuchet MS", Arial, "Lucida Sans Unicode", Tahoma, sans-serif;
or this under headers:
font: 1.3em georgia, "times new roman", times, serif;
From there, you can choose your font families. However, there’s not a lot of choices with fonts on the Web. The two sets of fonts listed above are about as creative as you can get because not everyone will have the same fonts installed on their computer.
As far as more themes go, I’m actually planning on releasing a new magazine/news-style theme this weekend. It’s going to be a little more “premium” than previous themes. It’ll have a lot more features packed into it.
Hi, I’ve download the Newspaperize but unfortunately the image can’t be shown in the mainpage. The Code was
Is that code can show image ? I wonder with that code i can show my post image without change into
Thxs.
Andi, I’m not exactly sure what you’re asking. What code?
I am just testing this out now but I have a small problem I hope you can help with.
I don’t want the right sidebar to display on a particular page that I have. I am using a plugin called Now Reading which allows you to build up a library and has a library page (library.php) In another theme I was using, I changed it so that there are no sidebars on that page so that all the info can fit in (lists of books and covers etc), but on your theme I don’t know how to stop the right sidebar from displaying just on that page only. I do want it on every other part of the blog just not that page.
Can you tell me how to stop it from displaying on that particular page only?
Thanks
You spelt “newspaperize” wrong in the footer link of the theme.What you have there is “Newspaperzie”.
Elle, you’ll have to be more specific than that. What page? Are you talking about a WordPress “Page,” like your About page or something? The “footer.php” file is where the call to the right sidebar is.
Ada, thanks for pointing this out. I do all this work to make everything perfect and misspell the name of the theme in the footer. 🙂
hi,
I worked it out re the sidebar, I decided to leave it on in the end.
I just noticed a new problem though after installing your theme. I have the Ultimate tag warrior plugin with a tag cloud widget in my sidebar. It displays fine but I just noticed with your theme when you click on any of the tags you get this error instead:
Fatal error: Call to undefined function wswwpx_content_extract() in /home/********/public_html/blog/wp-content/themes/newspaperize/index.php on line 11
It works fine in other themes, any idea how to fix?
I searched google and there was one reference to another blog that seemed to be having the same problem but no solution.
At the same time, I have a new problem when trying to change back to my old theme. When I select the other theme, I get this message:
Warning: Cannot modify header information – headers already sent by (output started at /home/***********/public_html/blog/wp-config.php:47) in /home/***********/public_html/blog/wp-includes/pluggable.php on line 341
It does actually change the theme but I can’t see that unless I open another browser window. Everything else seems to be working normally, I wondered since they just happened after installing newspaperize, if they were connected?
I really don’t want to have to reinstall the theme if possible, thanks for any help
Elle, sorry about the “wswwpx_content_extract()” thing. It was something left in “index.php” by mistake. It has been corrected. However, the theme doesn’t use “index.php” because it has a “home.php” file. I’m not sure why that’s a problem.
What version of WordPress are you using? I haven’t worked with the Ultimate Tag Warrior Plugin before. I guess that when you click on the tag, it calls “index.php” for some reason. I suggest downloading another copy of the theme and uploading just the “index.php” file or copying the content of “home.php” into “index.php” in your theme now.
I don’t think the changing themes issue has anything to do with this theme. I’m not 100% sure though. I’ll look more into it when I have the time, but it could be an issue with your WordPress install itself. As in my recommendations above, I definitely suggest updating to the latest version of WordPress.
Hi and thanks
I will try the above
I am using 2.2.3 as I can’t upgrade until I am able to upgrade something else that I use.
Success! I uploaded another index.php and that has solved the tag problem.
I also solved the second problem by checking the wpconfig file and removing a blank line from the end. I don’t know why that was there as I’ve never touched that file before but there was one after the ?> and now that problem has gone away too – yay! It’s looking really cool – thanks, I love the theme!
You’re welcome. I can imagine the stress you’ve been going through. Just a slip of the keyboard! Love your themes. You’ve obviously put a lot of work into them. All the best.
Elle, I’m glad everything is working great. That’s weird about your config file though.
Ada, once again, thanks for finding my typo. Not too much stress though. Just not enough time to do all things I want to do in a day.
Justin
I’m having a problem with images showing on the category page. Images all work on the home page and post page.
I’m using image only, no thumbs
Steve
Steve, you’re inputting invalid image file names in, or rather, you’re probably inputting incorrect paths.
For example, if your image is located in “site-name/wp-content/uploads/year/month/image-name.jpg,” then you can’t put “wp-content/uploads/year/month/image-name.jpg” as the image file name. It wouldn’t work on your post pages if your permalinks weren’t set up the way the are either.
There are two correct formats you can use here. One is to use the entire image URL. The other is to use a relative path. Your image file name would look like:
/wp-content/uploads/year/month/image-name.jpg
Notice the slash in the front. You’re probably leaving that off and trying to use relative paths.
Thanks Justin, I left off the “/” works fine now.
I am so new to this, i may be asking something that has already been said, for that I do apologize. How do I take the “grey” off of the background on the page once clicked?
Hi Justin,
I wanna use your great theme for a new project.
In the top-navigation (home etc.), your theme shows the sites of the blog. I would like to show the “sections” in the top-navigation instead. What do I have to change in the header.php or elsewhere?
Sebastian
Gersh, I honestly have no idea what you’re asking. Once what is clicked? What gray?
Sebastian, to change the links in the top navigation bar, just open “top-nav.php” and put what links you want in there.
Hi there, thanks for this great theme.
I’ve been tweaking it a little to display an adsense ad on single, right beside the custom field image.
Link here
The problem is it only works with everything inside a table. If I use a div, as at the bottom of single, it gets all weird. Any sugestions?
J. Noronha, the first thing I want to say is that you need to clean the site up a bit. You have 72 XHTML errors. This can cause all kinds of problems.
I would wrap the ad in a div with a class of “left,” like this:
I would also give the image a class of “left” or “right.” You can do this by adding the custom field Value of “left” to the Key of “image-class.”
Thanks a lot, I’m going to try that. About the XHTML errors, I was checking and most of them are caused by no validated ads code (this people should go back to college).
@Justin
Thank you, I’ll try it 🙂
Justin
Can you help me fix this problem at http://www.randallhill.org/RustyRails with the flv. player. If you click on the link you’ll see the video is there.
rlh
Randall, I don’t do support for flv players because I haven’t created any. I can give you theme support though. You should check with whoever created the player for support.
Justin: I am having trouble embedding a youtube video in an article. (probably something simple I am overlooking). It shows a broken link on the page. Here’s what I am pasting into the CODE block on the article:
John M, this really has nothing to do with the WordPress theme. Your code didn’t show up either. You should try wrapping it in these tags:
The code I use to put YouTube videos in my pages is:
Of course, you’ll need to change the “Video URL” to the Embed URL on the YouTube videos page. Just take the URL, delete the
&rel=1
at the end, and replace “Video URL” with that.If something else is messing the video up, then you might want to stop by the WordPress support page. A lot of people can help you there.
Thanks. I love the theme, by the way.
No problem, but I accidentally left a PHP tag in the code. You might want to check the edited comment. I’ve corrected my mistake.
Justin:
The “features” section is not picking up articles that I’ve put in the “features” category.
homeschooilng.redglobal.com
The fourth article is in the features category (I haven’t edited the home.php file) and it is not getting picked up by the function.
John M
Maybe this has something to do with you not having “pretty permalinks” set up. I’m not sure. See if this works. Open “home.php” and change this line:
To this (change the “4” to whatever you category ID for “features” is):
Also, make sure the category slug is “features,” not just the category name.
Changing the posting slug did the trick. I didn’t try the other coding change. Thanks again.
Sorry for the confusion a few posts back….
How do i take the grey in the background of this page out…
http://adopteerights.net/nulliusfilius/?page_id=39
I’m talking about the “grey” behind the “state names”
and also the grey out of the form on this page:
http://adopteerights.net/nulliusfilius/?page_id=18
Thank you so much for your help. I am new to this, as I stated above.
Gersh
Nevermind, I am using your new theme “structure” instead. I just found it and am going to switch! its EXCELLENT!! Thank you SO MUCH!
When i click the register button, it says:
Not Found
The requested URL /register.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
Gershom
Thanks for using my themes.
Josh
Do you have a link I can see? Is your WordPress install not in your /root directory? There’s not much I can do here without seeing what’s going on.
How can I have the sidebar from my front page be the same sidebar for every page/post/category, etc?
Brad
Copy and paste everything from the sidebar you want into the other sidebar files.
I don’t understand – how/where do I do that? which files do I modify in the theme editor?
Take a look – http://ohiovalleyphoto.com/sports/?p=44
My categories are duplicated now. Plus, I don’t know how to add this sidebar to the category page at all……
Brad
There are four sidebar files, “sidebar-home-left.php,” “sidebar-home-right.php,” “sidebar-archive.php,” and “sidebar-single.php.” The first two are both on your front page. Depending on which one you want your other sidebars to look like, you must copy it.
For example, if you want everything to look like “sidebar-home-left.php,” then you must open that file and copy its contents (except for the first two and last two lines). Paste those contents into the other files (except for the first two and last two lines).
If you don’t know how to edit these files, then I suggest you simply use widgets.
Ok, incredibly basic question…but to me not obvious. I have installed the theme, but now where do I go to add content? When the default WP theme was there I had access to the administration menu’s, etc. However, now that the new theme is up, I login to it and…nothing. How do I add content, or siwtchback, etc.
Russ
You just login to your WordPress dashboard like you normally would. This has nothing to do with the theme. It should be something like:
your-site.com/wp-admin
Ok, I was able to log in to my dashboard. Still, how do I add content? I see options such as Home and About on the theme, but can I add others? Where are the pages that are linked to those menu options? Also, there are items marked Sections, Latest Headlines and Popular Stories. How do I get content under there. I have gone to the dashboard and added pages and categories, but none of these are shwoing up. Can you tell I’m completely baffked??
Thanks.
Ok. I’ve figured out how to do most of what I was questioning in my ealier post. On question though…
I have created sidebar categories viua widgets and have called them Basketball and Football. I also have created lots of other categories via the manage/categories function in WP. My goal is to have a category for a sport and then underneath that category have another catagory that contains all the posts for that sport. However, what is happening is that I end up with the same category (create by manage/category) underneath the widget created category. No matter what I do I have the same subcategory under the main category., ex:
Football –> Category 10
Baseball –> Category 10
I have tried everything I know for the last 2 days and I can’t figure out why this is happening. I want it to be like:
Football –> catgegory 10
Baseball –>category 5, etc
You can see this on http://www.gtgametime.com
Please help.
Thanks.
Hi Justin, thanks for a great theme. I have pasted an ad code from Advertlets. But its not aligned properly and looks off-centre. How do I correct it?
hi the Advertlets ads pasted on my website show up fine on my Mac. But when I checked it on Windows IE/Opera they did not show up. How do I correct this?
Justin – I love the theme and haven’t had any issues that I couldn’t figure until I notice that longer posts cause issues with the footer floating up among the actual post content. Is there a way to fix this? (Thanks)!
Please take support questions to the support forums. I’m trying to move them all to one central place.
Russ
To me, it sounds like you need to read the WordPress Codex to learn about some of the basic functions of the system.
Lakshmipathy
What code did you use and where?
Lisa
You might need to add one of these three lines of code to
#footer
in “style.css.”I’ll see how can I use this one… thanks
Thank You.
I love this theme so much! Thanks!
Live Demo – Error establishing a database connection 🙁
Ru: a tema ochen horoshaya. Avtor molodes.
I’d like to go back to this theme. If I switch, will my “blocks” remain intact for the transfer over? I mean all of the “text” blocks, links etc. I don’t want to lose all of my information.
Nevermind, something happened last night and its all gone. I have to start from scratch. I wish I was as computer savvy as you.
demo is not work plz check link
Hey I saw the theme in a preview page before I got here;it looked really good, but I can’t see the live demo! Something is wrong. I’m getting an error message!
Please read the bold text below the demo link at the top of the page:
Thanks. very nice template.
When the demo can up again Justin?
You have some problems with demo:
Error establishing a database connection
Best…
Can anybody give a link a demo? even to a newspaperize modified theme… i want to see it action 🙂
yep. pls give a link a demo..?
Nice theme. I’m going to use this one with my Mesothelioma site. I been looking for a magazine style theme that would be easy to blend in Adsense. Thanks.
thanks for a great theme. btw, demo doesn’t work?
That’s why it never hurts to read:
Nice theme. I’m going to use this one with my Mesothelioma site.
Nice theme :). Thanks.
Is this updated for the latest version of Wordpress?
I saw the demo of this theme from another website because link above not show me.
but really nice theme Justin, good work 😀