Vignesh Pichamani
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: This is somewhat embarrassing, isn’t it? – Top Feature ImageYou are linking the featured image as with http://www.baywestfamilyhealthcare.com/www.baywestfamilyhealthcare.com
Remove one of the link then your problem has been solvedThanks,
vickyForum: Fixing WordPress
In reply to: Number of visitors to WebsiteThere are so many reason that visiting count increase or decrease.
If you made the SEO as with link building, social bookmarking etc. More link building make google pay for your site ( I mean visiting people drastically)I believe there are plenty of factors while you do SEO. Using backlink services may or may not be a good idea which totally depends on other key factors.
Here are a few you need to write down on a peace of paper or simply your notepad file
1) Age of Domain
2) Keyword competition
3) Content – onpage optimization, content quality (check via copyscape)
4) Backlink relevancy
5) Backlinks from Authority sites
6) Backlink rate (per day/week/month)
7) Sitemap, meta tags, robots.txt (if present and correct)
8) Outbound links
9) RSS Optimization
10) Server/IP/Spam/Block checkForum: Fixing WordPress
In reply to: Show all post with attached image on a single Page<?php // the query $args = array( 'post_type' => 'attachment', 'posts_per_page' => -1, 'post_status' => 'any', 'post_parent' => null ); $the_query = new WP_Query( $args ); ?> <?php if ( $the_query->have_posts() ) : ?> <!-- pagination here --> <!-- the loop --> <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?> <h2><?php the_title(); ?></h2> <?php endwhile; ?> <!-- end of the loop --> <!-- pagination here --> <?php wp_reset_postdata(); ?> <?php else: ?> <p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p> <?php endif; ?>Use wp_query to fetch the post data.
http://codex.wordpress.org/Class_Reference/WP_QueryForum: Fixing WordPress
In reply to: Issue with Post dataSee I got this error
Parse error: syntax error, unexpected ‘<‘ in /home/content/82/11357782/html/wp-content/themes/responsivechild/post-data.php on line 20
Can you reproduce the error ?
Forum: Fixing WordPress
In reply to: Spam LinkTake the backup of your theme and find the filename as footer.php then remove that particular line or just comment that line
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected in theme's header.phpUsing the ftp or Cpanel login change the theme folder to theme_old then login to your wordpress account hope it may help.
I think contact your theme vendors to solve this problem.
Thanks.
Forum: Fixing WordPress
In reply to: Footer problem on Rolex themeWhere you have commented the fflink() ?
Forum: Fixing WordPress
In reply to: How To Duplicate Images in the media libraryI think whenever you upload the same image with same name as more than once then it automatically renamed and uploaded to media. This what you are asking for ?
Forum: Fixing WordPress
In reply to: Changing header size on Twenty Thirteen themeCan you provide me the site url by this i will try to help you
Forum: Fixing WordPress
In reply to: wp-admin not showingSite url ?
Forum: Fixing WordPress
In reply to: get images urls from post.phpMake it
global $post;<?php global $post; $image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); echo $image; ?>Forum: Fixing WordPress
In reply to: get images urls from post.php<?php $image = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); echo $image; ?>Hope it helps.
Thanks.
VickyForum: Fixing WordPress
In reply to: Why is there a "?" in URL of a linkUsing the query string like that they may perform
if($_GET[show]==all) {
//did something
}
else {
//did something
}Forum: Fixing WordPress
In reply to: Functions File is missing! after upgradeYep you made a fix. Try to make this thread as resolved if it all works fine. . .
Forum: Fixing WordPress
In reply to: Is there a fronend way to display:none (and on)classes likeCan you describe it briefly by this people who can easily get reply back to your thread.
can you provide the demo url and what you are trying?