Title: dem's Replies | WordPress.org

---

# dem

  [  ](https://wordpress.org/support/users/dem/)

 *   [Profile](https://wordpress.org/support/users/dem/)
 *   [Topics Started](https://wordpress.org/support/users/dem/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dem/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dem/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dem/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dem/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dem/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/dem/replies/page/2/?output_format=md) 
[→](https://wordpress.org/support/users/dem/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Fields required to register](https://wordpress.org/support/topic/fields-required-to-register/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/fields-required-to-register/#post-706966)
 * he’s not asking advices… he’s asking for “how-to’s”
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Every user upload files to their respective directory.](https://wordpress.org/support/topic/every-user-upload-files-to-their-respective-directory/)
 *  Thread Starter [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/every-user-upload-files-to-their-respective-directory/#post-715569)
 * Ok Thk for the tip. I’ll try this one. Some day i’ll try to make subfolders 🙂
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [Multiple Blogs One Database](https://wordpress.org/support/topic/multiple-blogs-one-database/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 2 months ago](https://wordpress.org/support/topic/multiple-blogs-one-database/#post-588546)
 * hahahahaa i was searching for something and this post was really really nice 
   hahahhaha
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Display posts from 2 WordPress Databases](https://wordpress.org/support/topic/display-posts-from-2-wordpress-databases/)
 *  Thread Starter [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 2 months ago](https://wordpress.org/support/topic/display-posts-from-2-wordpress-databases/#post-709197)
 * or maybe… installing 3 databes with 3 different prefixes…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding content from other database table](https://wordpress.org/support/topic/adding-content-from-other-database-table/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 2 months ago](https://wordpress.org/support/topic/adding-content-from-other-database-table/#post-633476)
 * I 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Adding content from other database table](https://wordpress.org/support/topic/adding-content-from-other-database-table/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 2 months ago](https://wordpress.org/support/topic/adding-content-from-other-database-table/#post-633475)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Displaying posts from 2 particular categories.](https://wordpress.org/support/topic/displaying-posts-from-2-particular-categories/)
 *  Thread Starter [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/displaying-posts-from-2-particular-categories/#post-697743)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Displaying posts from 2 particular categories.](https://wordpress.org/support/topic/displaying-posts-from-2-particular-categories/)
 *  Thread Starter [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/displaying-posts-from-2-particular-categories/#post-697741)
 * 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Making blog and portfolio work together?](https://wordpress.org/support/topic/making-blog-and-portfolio-work-together/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/making-blog-and-portfolio-work-together/#post-687320)
 * 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>
    <?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 css
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Audio Video players but not downlable. they are private](https://wordpress.org/support/topic/audio-video-players-but-not-downlable/)
 *  Thread Starter [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 3 months ago](https://wordpress.org/support/topic/audio-video-players-but-not-downlable/#post-687317)
 * mmm 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Post videos and don’t let people to download it.](https://wordpress.org/support/topic/post-videos-and-dont-let-people-to-download-it/)
 *  Thread Starter [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/post-videos-and-dont-let-people-to-download-it/#post-683574)
 * i’m going to try with this one:
 * [http://www.channel-ai.com/blog/plugins/flv-embed/](http://www.channel-ai.com/blog/plugins/flv-embed/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Video Thumbnails on flash videos](https://wordpress.org/support/topic/video-thumbnails-on-flash-videos/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/video-thumbnails-on-flash-videos/#post-587154)
 * i’ll try something with this 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Featured Article Plug-in](https://wordpress.org/support/topic/featured-article-plug-in/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/featured-article-plug-in/#post-683090)
 * i 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](https://wordpress.org/support/forum/your-wordpress/)
   
   In reply to: [Great template on new site](https://wordpress.org/support/topic/great-template-on-new-site/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/great-template-on-new-site/#post-675606)
 * maybe 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Password-protect specific pages?](https://wordpress.org/support/topic/password-protect-specific-pages/)
 *  [dem](https://wordpress.org/support/users/dem/)
 * (@dem)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/password-protect-specific-pages/#post-682398)
 * 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…
 * 🙂

Viewing 15 replies - 1 through 15 (of 18 total)

1 [2](https://wordpress.org/support/users/dem/replies/page/2/?output_format=md) 
[→](https://wordpress.org/support/users/dem/replies/page/2/?output_format=md)