Some guidance here would be a HUGE help! Without more information or some guidance it is sounding to me like there are two possible strategies.
1) A lot of manual work with the database which my counterpart could do, albeit with no idea how time consuming this might prove to be. Making sure the links all line up is a part of the concern.
2) A lot of cut & paste used in the process of creating all new WordPress posts, followed up by an extended round of 301 redirects.
Can anyone offer any suggestions or a proven strategy? Some way to automate this reliably would be a wonderful thing.
Thank you
]]>I have made a custom template with a static front page. I fixed that by creating a new .php file and call it Home.php. I made a second .php file and call that blog.php. In wordpress I made a new page with the name blog and under the page-atrribute I choose the blog template.
I have this code in my blog.php but I don’t see my created blog items. I think I am missing some code but I can’t figure out what:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”thePost”>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="meta"><?php the_date() ?><span class="cat">Categorie: <?php the_category(',') ?></span></div>
<div class=”postContent”>
<p><?php the_excerpt(); ?></p>
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">Lees het volledige artikel!!!!!!</a>
</div>
</div>
<?php endwhile; else: ?>
<p><?php _e(''); ?></p>
<?php endif; ?>
</div>
Hope someone can help me.
Thanks a lot!
]]>art1_title, thumb, subtring of content…>>see more
art4_title, thumb, subtring of content…>>see more
art29_title, thumb, subtring of content…>>see more
thanks luca giay
]]><?php
/*
Template Name: Blogs
*/
?>
<?php get_header(); ?>
<section>
<?php $my_query = "showposts=4"; $my_query = new WP_Query($my_query); ?>
<?php if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); ?>
<?php the_title() ?>
<?php the_excerpt('') ?>
<?php endwhile; // end of one post ?>
<?php endif; //end of loop ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php endwhile; endif; ?>
</section>
<div style="height:10px;"> </div>
</div>
<?php get_footer(); ?>
]]>I have created a site that uses a static home page. I have also created a blog page that I wish to have display a list of my blog posts. I read a page on the wordpress info center that said you must set the blog page to use the Default Template. I have done this, but it only renders the post titles and seems to add extra content that I don’t want to display (twitter feed from my home page). Here is the blog page. Is it possible to edit/check the Default Template to troubleshoot this further? Where do you configure the php page used for the Default Template? Thank you!
]]>– Enable my customers to have their own birthday party “blog” replicating the design of the card they have chosen.
– The customer’s blog will enable only friends and family who have already attended the birthday party will be able to upload photos, video, and leave comments.(is there a password users can enter in order to view the blog?)
– Have the customer’s birthday party blog web address be my company’s domain followed by the customer’s username. (example: https://www.mycompany.com/username)
– Would users know their blog is offered through word press? I would not like to have the word press name attached to my website, it needs to be a “white label” scenario, because I want to maintain the integrity of my company for marketing and branding purposes.
I would like to know if this is possible with the word press technology, can you please advise on the best way to get started and point me in the right direction. Thank You.
https://www.masksandmakebelieve.com/blog/
Thanks, Jon
]]>Reasons for going to wordpress:
1. Writing WP versions of my scripts would be easier since I would be using it more often
2. RPC-XML support so I can do things easier like Trackbacks/Pingbacks/Remote Posting/
3. Larger support for plugins to add more functionality to a blog.
Reasons why I like my custom blog:
1. I coded it
2. Handling of security issues is much easier
3. People think its cool I coded the entire thing.
Anyway what I am wondering is, would it be possible to import my data into the WP tables without too much difficulty? The photos/images etc I use are hyperlinks on the full URL.
Think the only thing that might not go well would be categories and comments.
I am contemplating just starting from scratch (blog is just over a year old). And then using a 301 redirect to any posts that google cannot find in hoping to save grace with the PR of the blog and any weird issues I might get with having various search entries lead to 404s.
Not sure if this is in the proper forum, so please move it if needed. Thanks!
]]>