IMICreation
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Footer not displaying at bottom on certain page?Because you have closed main id div after center you should close this before center this will rectify you problem.
Forum: Fixing WordPress
In reply to: Footer not displaying at bottom on certain page?Because you have closed <div id=”main” class=”site-main”> this div after center, that’s why the footer is going up of sidebar.
Forum: Fixing WordPress
In reply to: Have posts listed as numbers.you can use query to get this just start count with 1 and increase count with 1 in loop and echo count and in a href of count enter the_permalink(); and for next and previous button just give next_posts_link and previous_posts_link.
that’s allForum: Fixing WordPress
In reply to: Disable automatic image thumbnail resizingyou can check from your dashboard setting-media
there is three image sizes defineForum: Fixing WordPress
In reply to: Custom Post Page issuefor default home page, if your theme has the home template than create page and select the template from right sidebar as home and select in setting-reading front page.
Forum: Fixing WordPress
In reply to: Have posts listed as numbers.on the number there will be link of the post?
Forum: Fixing WordPress
In reply to: How do I list comments for the current post?you can see this
$scomment = get_comments(array(“number”=>5)); print_r($scomment);
this will give all the keys for comment you can use these keys as you want to show. with foreach loopForum: Fixing WordPress
In reply to: External Links Opening in New AND Current Tab/WindowMake sure you have not checked this radio link in menu
Open link in a new window/tabForum: Fixing WordPress
In reply to: External Links Opening in New AND Current Tab/Window_blank Opens the linked document in a new window or tab
_self Opens the linked document in the same frame as it was clicked (this is default)Forum: Fixing WordPress
In reply to: Archives not workingit’s working great
Forum: Fixing WordPress
In reply to: How do I list comments for the current post?Forum: Fixing WordPress
In reply to: Change scheduled posting dateyou can try like this
$my_post = array(
‘ID’ => 78,
‘post_date’ => ‘2013-08-08 12:12:12’,
‘post_status’ => ‘future’ );// Update the post into the database
wp_update_post( $my_post );Forum: Fixing WordPress
In reply to: parse error syntax error in function.php – can not log in to wpadminnow you can not login through wp-admin you have to reupload your functions.php from filezilla in your theme directory
Forum: Fixing WordPress
In reply to: is there a way to make posts into a page?Forum: Fixing WordPress
In reply to: is there a way to make posts into a page?you can run query to display posts on page