bmg1227
Forum Replies Created
-
It usually takes at least a few days for them so start showing up in GWT. I think mine took 5 days before it started showing any, and they are still being added on a daily basis.
Forum: Plugins
In reply to: [AMP] Are AMP supposed to be in google sitemaps?Thanks Mohammad, appreciate that. Designed that one myself. 😉
Forum: Plugins
In reply to: [AMP] How long to get into Google's CDN?Thanks Mohammad — that’s exactly the answer I was looking for. (and thanks for showing me the CDN link, didn’t know about that)
Forum: Plugins
In reply to: [AMP] Are AMP supposed to be in google sitemaps?The plugin automatically outputs code into the single post source code that tells Google there is a corresponding AMP page. For instance on my post, this is displayed:
<link rel="amphtml" href="http://nosidebar.com/white-space/amp/" />Forum: Plugins
In reply to: [Facebook Instant Articles & Google AMP Pages by PageFrog] Option not saving…Marking this resolved, as I realize I have to enable these on an individual basis.
Forum: Fixing WordPress
In reply to: Add list of posts to page sidebar belonging to special category nameTry something like this:
<?php if (is_page(1)) { ?> <ul> <?php $recent = new WP_Query("cat=1&showposts=5"); while($recent->have_posts()) : $recent->the_post();?> <li><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php endwhile;?> </ul> <?php } elseif (is_page(2)) { ?> <ul> <?php $recent = new WP_Query("cat=2&showposts=5"); while($recent->have_posts()) : $recent->the_post();?> <li><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php endwhile;?> </ul> <?php } else { ?> PUT HERE SOMETHING IF IT'S NOT ANY OF THE ABOVE PAGES <?php } ?>The code above will basically show a list of most recent posts for category ID #1 if you are viewing page ID #1, and category ID #2 if you are viewing page ID #2 and so on…simply rinse and repeat.
Is this what you were looking for?
Forum: Fixing WordPress
In reply to: Update theme in directory?I have updated a theme that I have listed in the Theme Directory – I’m trying to upload it, but it’s saying that the theme exists.
Forum: Alpha/Beta/RC
In reply to: WP 2.8 – WP Dropdown Categories no long workingDisregard this – the issue was occurring in beta 1, but then I updated to beta 2 and it’s working again. 🙂
Forum: Plugins
In reply to: WP Super CacheOk, update I got past the issue I mentioned with the screenshot – but when I enable the plugin and set the Super Cache Status to on, my site can’t be accessed – it just hangs like I mentioned before. As soon as I disable it, then the site loads fine.
Forum: Plugins
In reply to: WP Super CacheHere’s a screenshot of that error.
Forum: Plugins
In reply to: WP Super CacheI’m telling you, I do that, and can’t get to the theme options page because of the error I’m seeing…
Forum: Plugins
In reply to: WP Super CacheRight – no, I don’t have WP-Cache installed, this is my first attempt at installing a Cache plugin.
Forum: Plugins
In reply to: WP Super CacheBecause the plugin options page says I need to add that line to the config file or the plugin won’t work. I upload the plugin, activate it, and go to the options page and get this:
Error: WP_CACHE is not enabled in your wp-config.php file and I couldn’t modify it.
Edit /var/www/vhosts/revolutiontwo.com/httpdocs/wp-config.php and add the following line:
define(‘WP_CACHE’, true);
Otherwise, WP-Cache will not be executed by WordPress core.Forum: Fixing WordPress
In reply to: How to Add Plugins to functions.php in WP2.6?Actually no it’s not resolved Nathan, as another site that we are testing on is still having the issue.