Wordnewz Wordpress theme

3 Jul

Well.. is done :) The Wordnewz is finally done.

As i said, there is two version of theme: free and premium. Read below to see the differences.

Preview:

Free theme :

  • You have to edit all files to make some changes. For ads you need to edit files from ads folder. For index settings you need to change index.php
    • For featured slider: find
      < ?php $my_query = new WP_Query('tag=featured&showposts=3');

      featured - enter tag slug and how many slides you want

    • For small excerpts find:
      $my_query = new WP_Query('category_name=economy&showposts=3');

      Change category_name according to your category slug

  • Images is added width custom fields with 130×130px for index and 200×150px for inner slider
  • Plugin settings
  • Print This
  • Email this
  • Excerpt length: 150

Download here.

What about premium version?

When you purchase the premium version you will have:

  • Technical support
  • Install/configure wordpress theme and plugins
  • Small changes of theme (colours, sizes, etc)
  • Admin panel for theme
  • RSS for each category
    • mail: slice [@] iamntz. [] com
    • y!messenger: i0nutzb
    • skype: i0nutzb
  • The price for premium theme is $50 and for more details you can contact me here:

    For now i don’t have an automatic way for purchasing, but i will reply you ASAP.

Tags: , Comments (0)

Bookmark this article!

Del.icio.usDiggStumbleUponFurlRedditTechnorati

SlashDotWindows LiveYahooGoogleFacebookBlogLines

Wordpress get_posts() function

30 Jun

Today i spent some time trying to figure how to get existing (and also used) tags from wordpress and using in admin panel as a combo box, for my brand new theme Wordnewz.

The return of get_tags() function was some kind of array but, because of my skills (not) in PHP i spend WAY too much time to go figure what to do. The initial result of get_tags() function is:

Array
(
    [0] => stdClass Object
        (
            [term_id] => 28
            [name] => Featured
            [slug] => featured
            [term_group] => 0
            [term_taxonomy_id] => 29
            [taxonomy] => post_tag
            [description] =>
            [parent] => 0
            [count] => 6
        )
)

And i only needed [name] and [slug]. Ofcourse, like a smart guy that i am, i pointed my browser on wordpress codex where i found… NOTHING. Nothing about this function… Great. Let’s try various stuff and google it for any ideas. And i found a PHP function get_object_vars for easy conversion. After this, all was GREAT. I use it like this:

1
2
3
4
5
$allTags = get_tags();
foreach($allTags as $thisTags) {
		$thisTag = get_object_vars($thisTags);
		echo '<option value="'.$thisTag['slug'].'">'.$thisTag['name'].'</option>\n';
}

And it WORKS like a charm. I posted this thing because i didn’t found too much references for stdClass Object or get_tags() Wordpress function.

Tags: , Comments (1)

Bookmark this article!

Del.icio.usDiggStumbleUponFurlRedditTechnorati

SlashDotWindows LiveYahooGoogleFacebookBlogLines

And another one!

27 Jun

After last two wordpress themes that i released in last weeks was a success (i expected to have less feedback than i had), i was thinking to make another theme. This time will be a free-premium theme. What it mean this? The theme will be launched as a free theme and will have some features available only if you pay (almost anything from site will be customizable from admin panel).

Anyway, it’s a theme great for using in a news site, fixed width, two sidebars, using custom fields and various plugins.

Here is a preview of current progress:

I think will be done by the end of this week, when i will release both free and premium version of the theme.

Stay tuned for more.

Tags: Comments (1)

Bookmark this article!

Del.icio.usDiggStumbleUponFurlRedditTechnorati

SlashDotWindows LiveYahooGoogleFacebookBlogLines

Another free Wordpress theme - Rounded.Cube

23 Jun

Yesterday i was pretty bored: weekend, alone, and all bad things and i say to make another free wordpress theme. I opened Photoshop and i start to draw. You can see the results on the next screenshot or here.

Free wordpress theme

Some of the main features:

  • Widgetizable;
  • Xhtml 1.1 / CSS 2.1 Valid;
  • 2 columns;
  • trackbacks and pingbacks are separated from comments;
  • and more things that you can discover if you try this great and free wordpress theme :D

You can download the teme HERE.

But wait! There is more nice things to come! More free wordpres theme to come and if you want a premium theme, don’t wait and contact me.

Tags: , Comments (3)

Bookmark this article!

Del.icio.usDiggStumbleUponFurlRedditTechnorati

SlashDotWindows LiveYahooGoogleFacebookBlogLines

And the free wordpress theme is here

8 Jun

Finally!

I finished my first free wordpress theme. What it make it so special? Well… The theme is with two and with three column: if you don’t have widgets on a sidebar, that sidebar is hidden and content is stretched. Nice, huh?
Anyway, you can download the theme with a single CLICK. If you (don’t) like it or if you have a problem, let me know.

Enjoy :)

Edit:

For now i can’t put a functional demo. But you can see the screenshot i put it yesterday here.

Tags: Comments (1)

Bookmark this article!

Del.icio.usDiggStumbleUponFurlRedditTechnorati

SlashDotWindows LiveYahooGoogleFacebookBlogLines

Older Posts »