rockgeek
Forum Replies Created
-
Forum: Plugins
In reply to: [Facebook] [Plugin: Facebook] Less jargon, more help/supportDefinitely – seems Facebook’s poor documentation & support has unfortunately carried over to WordPress unfortunately
Forum: Fixing WordPress
In reply to: Can't update plugins or WordPressA
sudo chown -R www-data /var/www/wordpress/
seems to have done it on the testing server!Forum: Plugins
In reply to: Page/Post Edit – Add Custom MenuThanks – I will have a mess around with that. Any further clues how to incorporate what I need/want?
Forum: Fixing WordPress
In reply to: wp_list_pages Exclude Doesn’t WorkNow it’s working. All I did was delete some themes I was not using!!!
Forum: Fixing WordPress
In reply to: wp_list_pages Exclude Doesn’t Work<!-- top tab navigation --> <div id="tabs"> <ul> <?php if((get_option('show_on_front')<>'page') && (get_option('fusion_topnav')<>'categories')) { if(is_home() && !is_paged()){ ?> <li id="nav-homelink" class="current_page_item"><a href="<?php echo get_settings('home'); ?>" title="<?php _e('You are Home','fusion'); ?>"><span><span><?php _e('Home','fusion'); ?></span></span></a></li> <?php } else { ?> <li id="nav-homelink"><a href="<?php echo get_option('home'); ?>" title="<?php _e('Click for Home','fusion'); ?>"><span><span><?php _e('Home','fusion'); ?></span></span></a></li> <?php } } ?> <?php if(get_option('fusion_topnav')=='categories') { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span><span>$3</span></span></a>', wp_list_categories('show_count=0&echo=0&title_li=')); } else { echo preg_replace('@\<li([^>]*)>\<a([^>]*)>(.*?)\<\/a>@i', '<li$1><a$2><span><span>$3</span></span></a>', wp_list_pages('echo=0&title_li=&exclude=107,109,137,138,139,173')); } ?> </ul> </div> <!-- /top tabs -->
This is the whole snippet of code
Forum: Installing WordPress
In reply to: Custom Page Title Plugin?I need something similar, or at least lemme know where to change it in the code.
At the moment the links look like:… href=”www.site.com” title=”site”>site</a…
but for SEO I need them to say
… href=”www.site.com” title=”something else site”>site</a…
Thanks!
Forum: Fixing WordPress
In reply to: Getting links to list by category<div id=”blogroll”>
<h3>Blogroll</h3>-
<?php wp_get_linksbyname(‘Blogroll’) ?>
<h3>Christian Resources</h3>
-
<?php wp_get_linksbyname(‘Christian Resources’) ?>
</div>
How can you get this to do automatically i.e. not having to put:
<?php wp_get_linksbyname(‘name-of-category-here’) ?> etc etc