Posts Tagged ‘Wordpress’
Meld Wordpress And Facebook Together With Wordbook
Written by Chris on January 30, 2008 – 6:18 pm -Now this is a pretty neat plugin:
Wordbook allows you to send your wordpress blog posts directly to your Facebook mini feed without any cut and paste nastyness - fantatsic if you tend to used wordpress as a blog and Facebook for networking rather than the other way round
You can get the plugin here: http://wordpress.org/extend/plugins/wordbook/
Popularity: 13% [?]
Sphere: Related ContentTags: blog, book, face, facebook, feed, post, press, update, word, Wordpress
Posted in Wordpress | No Comments »
Make Money With Wordpress And Matched.co.uk
Written by Chris on November 21, 2007 – 1:34 am -Everybody out there at the moment is trying to make money from their blog in one way or another, and one great way I found recently was via matched.co.uk, who will pay you up to £75 per month just for putting their ads on your sites.
This is great, but the way they do it is by allocating you one ad per page, up to 5 pages per site which can be a problem for wordpress users:
- Because the wordpress editor interferes with the ad code if it's pasted into a post
- Because if you were to dump all the ads in to your sidebar so they appear on all pages they'd look a mess
To get around this, I have written a neat little ad rotator plugin / sidebar widget for matched ads which will display each ad correctly in the sidebar of each page you have an ad allocated to.
You can see this in action by visiting the following links:
http://www.coderchris.com/
http://www.coderchris.com/2007/09/21/making-flash-sites-easy/
http://www.coderchris.com/2007/09/19/installing-red5-open-source-flash-media-server-on-centos-42/
A screen shot of the interface is here:
http://www.christopher-dean.co.uk/images/main.php?g2_itemId=1980
If you too would like to make money from matched.co.uk easily with wordpress, then you can buy my ad rotator via paypal for just £10 by clicking this button:
Popularity: 10% [?]
Sphere: Related ContentTags: ad, blog, matched, monetise, money, press, rotator, word, Wordpress
Posted in PHP, Products, Wordpress | 7 Comments »
Wordpress 2.3 has been released
Written by Chris on September 27, 2007 – 10:45 pm -Wordpress 2.3 has been released and I can already see the improvements as I'm writing this post - nice job guys!
Among other things the major changes are:
- Tagging support - handy
- Wordpress and plugin update notification
- Full Version of TinyMCE Editor (At last!)
- Canonical urls
- Pending review option for multi user blogs
- Speed enhancements
- And over 351 issues from the bug tracker closed
If you don't use wordpress already then why not give it a go - it's already great and it's getting better all the time!
Popularity: 6% [?]
Sphere: Related ContentTags: 2.3, list, updates, Wordpress
Posted in Wordpress | No Comments »
Page and Sub-page Menus In Wordpress
Written by Chris on September 17, 2007 – 6:52 pm -Recently I wanted to change the theme I use on my personal blog to the following: http://www.wpdesigner.com/2007/01/22/digg-3-columns-wordpress-theme/ as the current one I was using was pretty awful (to say the least) and this was a lot better
I liked this theme but unfortunately it lacked one thing (as do a lot of other themes I've used) - an auto generating set of page menu tabs at the top. The default theme just had a link to the home and about pages, so I added this in and it now works exactly the way I wanted it to. I've pasted the code below should you wish to do something similar.
This mod basically creates a list of all the parent pages along the top (which are rendered as tabs due to the css), and then when a link of a parent page is clicked, it displays the home tab, the tab for the parent page and then the list of tabs for the sub pages of that parent page.
On my site so far I only have one level of sub pages below the parent, but I believe this should work for any hierarchy of sub-sub pages - if you use this code and it does please post a comment to let me know.
Also this is a bit rough - the next time I use it I will probably clean it up a bit, but I know it works for now. If you'd like to provide me with a cleaner version before I have chance to work on it please feel free to drop me a line, and if it works I'll also post it here.
-
-
<div id="header">
-
-
<div id="menu">
-
<ul>
-
<li><a href="<?php bloginfo('url'); ?>/" title="<?php bloginfo('name'); ?>"><?php _e('Home'); ?></a></li>
-
-
-
<?php
-
-
// From http://codex.wordpress.org/Template_Tags/wp_list_pages
-
-
'show_date' => '',
-
'date_format' => get_option('date_format'),
-
'child_of' => 0,
-
'exclude' => '2, 53',
-
'title_li' => '',
-
'echo' => 1,
-
'authors' => '',
-
'sort_column' => 'menu_order, post_title');
-
-
if($post->post_parent)
-
$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
-
else
-
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
-
-
if ($children)
-
{
-
{
-
wp_list_pages('title_li=&include='.$post->post_parent);
-
}
-
else
-
{
-
?>
-
<li><a href="<?php echo get_permalink($post->ID); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
-
<?php
-
-
-
-
}
-
echo $children;
-
}
-
else
-
{
-
?>
-
<li><a href="<?php echo get_permalink(2); ?>" title="<?php _e('About'); ?>"><?php _e('About'); ?></a></li>
-
<?php
-
wp_list_pages($defaults);
-
}
-
?>
-
-
</ul>
-
</div>
-
Popularity: 18% [?]
Sphere: Related ContentTags: menu, page, sub, sub-page, subpage, theme, Wordpress
Posted in PHP, Wordpress | 2 Comments »















Feed 
