attals
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: home page contains every months posts, why?Placed code in ‘Theme functions’:
<?php
add_filter(‘pre_get_posts’,’home_current_month’);
function home_current_month( $query ) {
if( is_home() )
$query->set(‘month’,date(‘m’));
return $query;
}
$art_config = parse_ini_file(TEMPLATEPATH.”/config.ini”, true);Checked Home page and still not working
Thanks again,
TonyForum: Fixing WordPress
In reply to: Font in post is correct in 'preview' but changes in 'publish'Where would I find these tags, not that familiar with HTML…did look in ‘style.css’ but couldn’t find..
Forum: Fixing WordPress
In reply to: Font in post is correct in 'preview' but changes in 'publish'The text in ‘red’should be a larger size font but as I stated above, it does appear larger in the ‘preview’ mode but reverts to a default size in the ‘piblished’ mode. Follow this link: http://www.brooklynfuneraldirector.com
Forum: Fixing WordPress
In reply to: Add flash video to sidebarHaving Same issue, paste where?
Forum: Fixing WordPress
In reply to: home page contains every months posts, why?Mark,
Just got to it today, did a copy & paste but it didn’t make a difference. Any other ideas?
Thanks,
TonyForum: Fixing WordPress
In reply to: home page contains every months posts, why?Yes, Since it is a default setting as you have described, then I agree, the question is “How do i set the home page to display the current month’s post only”.. If I change it as discussed, then that would that limit the content search engines find, correct? Or do they also see the archive pages? I would like to configure it and have only the current month displayed on the ‘home’ page.
Thanks again for your helpForum: Fixing WordPress
In reply to: home page contains every months posts, why?Thanks but that’s not the problem. It seems all my posts are going on the home page, no matter which month. Can something be configured to only have the current month’s posts on the home page, while the previous months go into the archive (which they do now)? The previous months automatically go into archive but are also apperaing on the home page?
Forum: Fixing WordPress
In reply to: home page contains every months posts, why?Thanks for the reply, tried it but it dosen’t work, this seems to be a global setting since it also changes the archive posts. Example, June was only one post (my first), July was three and so far one for August and if you look at the link I posted above, that’s how I would like it to work. Any ideas?