phe.le
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: plugin that broadcast posts across networkIf you do a simple search, you will probably find it quickly.
Forum: Fixing WordPress
In reply to: Fatal error: Out of memoryIt should work unless your host does not allow for increasing the PHP memory limit. I would recommend you to contact them.
Forum: Fixing WordPress
In reply to: Fatal error: Out of memoryIncrease the limit in wp-config.php:
define(‘WP_MEMORY_LIMIT’, ’96M’);
Change the number to whatever limit you want.
Forum: Fixing WordPress
In reply to: Can I associate pages with categories?Use single category template instead of page template. Check the categories for that post.
https://justintadlock.com/archives/2008/12/06/creating-single-post-templates-in-wordpress
Forum: Fixing WordPress
In reply to: Child pages showing up in menuIf you have the necessary css to show dropdown links, just simply change the depth parameter to 2 or more.
<?php wp_list_pages(‘depth=2&title_li=’); ?>
Forum: Fixing WordPress
In reply to: Featured images do not display.Try:
<div id="art-highlight-container"> <div id="focus-box3"> <?php query_posts('category_name=Art-Focus&showposts=1'); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="<?php the_permalink(); ?>"><img src="<?php $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id(), 'original'); echo $thumbnail[0];?>" width="296" alt="<?php the_title(); ?>" /></a> <?php endwhile; ?> <?php endif; ?> <?php wp_reset_query(); ?> </div><!-- div#focus-box3 --> </div><!-- #art-highlight-container -->
I think you are missing: <?php if ( have_posts() ) : while ( have_posts() ) : the_post();?>
Please try again.
Forum: Fixing WordPress
In reply to: Child pages showing up in menuCan you post your header.php here?
Forum: Fixing WordPress
In reply to: Featured images do not display.Try:
<a href="<?php the_permalink(); ?>"><img src="<?php $thumbnail = wp_get_attachment_image_src(get_post_thumbnail_id(), 'original'); echo $thumbnail[0];?>" width="296" alt="<?php the_title(); ?>" /></a>
Forum: Fixing WordPress
In reply to: Child pages showing up in menuForum: Fixing WordPress
In reply to: sort DASHBOARD post items in alphabetical orderYou can just click on “Title” in posts.
Forum: Fixing WordPress
In reply to: Booted Off while in General SettingsMaybe you entered the wrong wordpress address. Go to phpMyAdmin -> database name -> wp_options -> change url back on line 2 and 37.
Forum: Fixing WordPress
In reply to: disable comment on static pageYou need to create a page template for the home page. Simply save the page.php and rename it to something like homepage.php. In that homepage.php, remove <?php comments_template(); ?>. Edit the homepage in WordPress dashboard and use the new page template.
Check out: https://codex.www.ads-software.com/Pages#Page_Templates
Forum: Fixing WordPress
In reply to: [ ! ] Category permalink problemsTry to update the permalinks.
Forum: Fixing WordPress
In reply to: Thumbnail linked to actual imageAre you using the featured image feature?
Forum: Fixing WordPress
In reply to: Hyperlinks Not Working on Main PageMaybe you are using <php the_excerpt(); ?> on the main post page.