dem
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fields required to registerhe’s not asking advices… he’s asking for “how-to’s”
Forum: Plugins
In reply to: Every user upload files to their respective directory.Ok Thk for the tip. I’ll try this one. Some day i’ll try to make subfolders ??
Forum: Installing WordPress
In reply to: Multiple Blogs One Databasehahahahaa i was searching for something and this post was really really nice hahahhaha
Forum: Fixing WordPress
In reply to: Display posts from 2 WordPress Databasesor maybe… installing 3 databes with 3 different prefixes…
Forum: Fixing WordPress
In reply to: Adding content from other database tableI was thinking… in fact, an easy example is wordpress.com
There are users, every user have his own subdomain… and in front page there are the latests posts…etc.
Forum: Fixing WordPress
In reply to: Adding content from other database tableI was looking for same thing. Here is what i was trying to do.
I want to every editor have his own wordpress blog. E.G. mydomain.com/John , mydomain.com/Matt, mydomain.com/Lennon.
I’m Going to develop a website where there’s going to be 3 editors. But first of all i want to display in the front page the latest posts of John, latests posts from Matt, and latests posts from Lennon.
Forum: Plugins
In reply to: Displaying posts from 2 particular categories.Ok…
Trying and trying i think i have a solution.
Thx anyway for reading this. And maybe you were looking for something similar. here’s the solution:
<ul> <?php $posts = get_posts('numberposts=10&offset=0&categories=3,4'); foreach ($posts as $post) : ?> <li> <p class="date"><?php the_time('d.m.Y') ?></p><a> " title="<?php the_title() ?>"><?php the_title() ?></a> </li> <?php endforeach; ?> </ul>
See ya’.
Forum: Plugins
In reply to: Displaying posts from 2 particular categories.Another idea…
I have this code:
<ul> <?php $posts = get_posts('numberposts=10&offset=0'); foreach ($posts as $post) : ?> <li> <p class="date"><?php the_time('d.m.Y') ?></p><a> " title="<?php the_title() ?>"><?php the_title() ?></a> </li> <?php endforeach; ?> </ul>
Is there some way to display just 2 particular cateogires? Thx.
Forum: Themes and Templates
In reply to: Making blog and portfolio work together?You mean “listing posts from certain category” i guess. In this case, category “portfolio”…
Maybe you can make a query like this:
*********
<?php $my_query = new WP_Query(‘category_name=portfolio&showposts=20’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?>******************************
1- You can create a portfolio.php.
2- upload it to the server
3 – Insert this code in portfolio.php:
<?php
/*
Template Name: portfolio
*/
?><?php get_header(); ?>
<div id=”content”>
<?php $my_query = new WP_Query(‘category_name=portfolio&showposts=5’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?><div class=”entry”>
<h1>” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”><?php the_title(); ?></h1>
<?php the_content(”); ?>
</div><?php endwhile; ?>
</div>
<?php get_footer(); ?>
4- Go to Write Page – Select PAGE TEMPLATE “portfolio”
5- Of course… you gotta order all the cssForum: Plugins
In reply to: Audio Video players but not downlable. they are privatemmm i prefer to prevent even the .flv
Let me tell you what i want to do.
I’m designing a website where a teacher will upload some videos. But we don’t want people to download that video because we want them to return to the website. Maybe they’ll pay for seeing those videos… so… if they download them, we are in broke hehe.
Forum: Plugins
In reply to: Post videos and don’t let people to download it.i’m going to try with this one:
Forum: Plugins
In reply to: Video Thumbnails on flash videosi’ll try something with this ??
Forum: Plugins
In reply to: Featured Article Plug-ini think he’s looking for that. If it’s not, well i’m wrong then. You said, “latest post”, but in fact is the latest post of the “featured category”
If sammo wants that he can download the mimbo2 theme. it has cool “features”
well… just trying to help ??
Forum: Your WordPress
In reply to: Great template on new sitemaybe you can use it for… technology products… where people can select the category they want to see… maybe notebooks, cameras, pc, etc. That’s where the weekly betting results are.
Forum: Plugins
In reply to: Password-protect specific pages?Well… i’m trying to do something similar but have no answers yet. There’s a lot of plugins but none of them is the thing that i am looking for.
You know what i was thinking maybe… We can create a HOME at yoursite.com/ and then create a HOME for premium suscribers at yoursite.com/siteprotected/… in the /siteprotected/ folder there’s another wordpress platform installed with a “password to whole site”.
So when the user goes to yoursite.com see the LOGIN BUTTON… and it will send him to the LOGIN.php of yoursite.com/siteprotected/
am i being clear? sorry ’bout my english…
??