ben.blodgett
Forum Replies Created
-
Forum: Your WordPress
In reply to: Web Design Company in WordPress@matphoto hey really appreciate all your feedback, took care of the greatest issue in the blog.
@mirzayasir4 that is not very helpful, perhaps provide a link to your website for us to take a look at, or make suggestions for improvement.
Forum: Fixing WordPress
In reply to: How and where do I edit query posts?You don’t need the exact code, you can use query_posts anytime as long as your in the loop
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
Forum: Plugins
In reply to: [Plugin: Extreme SEO] how can i see incoming links?You should just install seo for firefox..its a plugin that will show you all the necessary info for any website in terms of seo. go to seomoz.com lots of good stuff for seo
Forum: Themes and Templates
In reply to: adding an preview of an other pageUse query posts and <?php the_excerpt();?>
So your template for the projects page would look something like this –
Within the loop (after
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
) add something like this<?php query_posts('showposts=4&cat=3'); ?> <ul> <?php while (have_posts()) : the_post(); ?> <span class="home-links"> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php the_excerpt(); ?></li> </span> <?php endwhile;?>
Forum: Fixing WordPress
In reply to: Error reported, don’t understand what it meansYes your web server is set to restrict php memory to 32 mb, you can change this by editing your .htaccess file.
Add this line above the wordpress mod_rewrite stuff
php_value memory_limit 64M
Forum: Fixing WordPress
In reply to: Truncated long blog entiresMore resources there
Forum: Fixing WordPress
In reply to: Truncated long blog entiresYou would want to use something like this
<? function new_excerpt_length($length) { return 25; } add_filter('excerpt_length', 'new_excerpt_length'); ?>
Forum: Everything else WordPress
In reply to: Forum Moderatormrmist – thank you for your feedback, I will continue to provide assistance on these forums.
Forum: Fixing WordPress
In reply to: help switching my blog to different hostIs the back up of your database a .sql file?
Forum: Fixing WordPress
In reply to: Truncated long blog entiresCheck your functions.php file in the theme and make sure its not defining content or excerpt length.
Forum: Fixing WordPress
In reply to: Formatting my archivesYou can also just change the archive.php to `<?php the_excerpt(); ?> instead of the content – This will be default pull the first 55 words of a post, you can change this length in the functions.php file in your theme..
More info here..https://codex.www.ads-software.com/Template_Tags/the_excerpt
Forum: Fixing WordPress
In reply to: change META descriptions for each post?I would not code meta information in your template, install All in One Seo https://www.ads-software.com/extend/plugins/all-in-one-seo-pack/ and edit meta information on the editor page for each post/page.
Forum: Fixing WordPress
In reply to: change passwordGo to https://www.example.com/wp-admin and press the little lost password button, it will send a reset link to your email
Forum: Themes and Templates
In reply to: Questions About BrowsersThats such a great domain name, you have some weird margin issues going on in firefox..Is this your company?
Forum: Themes and Templates
In reply to: How Do I Reset My Site Stats?Thank you for that nsathees..wow
Why don’t you just install Google Analytics – or my personal favorite Get Clicky!