wprock
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove footer text in the wordpress blogCreate a child theme and then edit the file. http://codex.wordpress.org/Child_Themes
Forum: Fixing WordPress
In reply to: Error establishing a database connectionContact with your host. It is hosting problem. Some how your MySQL server is down now
Forum: Fixing WordPress
In reply to: Remove footer text in the wordpress blogmodify the footer.php file
Forum: Fixing WordPress
In reply to: parse error syntax error in function.php – can not log in to wpadmincopy the code from functions.php file and put in pastebin.com. After that share the pastebin link here.then we can fix the code
Forum: Fixing WordPress
In reply to: Parse errorcopy the code from functions.php file in pastebin.com and share the link here. Then we can check the code and modify it
Forum: Fixing WordPress
In reply to: Inserting Onclick Into previous_post_link and next_post_linktry this
onclick="JavaScript: _gaq.push(['_trackEvent', 'Next Page']);"Forum: Fixing WordPress
In reply to: Blog showing blank pagecheck once the error log file which is locating in root folder. You will get some error messages. You will try to resolve them.
Forum: Fixing WordPress
In reply to: Can't switch to visual editor after upgrade to 3.5.1Some JS is conflicting. You can manually upload the wp-admin and wp-includes folder of WP 3.5.1 via FTP and check once it.
Forum: Fixing WordPress
In reply to: recent post widget, how to exclude categorythen create a custom shortcode or plugin using query_posts() function. $args will be like this
query_posts(‘cat=-3&posts_per_page=5’);
you can pass the post limit via parameter.
Forum: Fixing WordPress
In reply to: recent post widget, how to exclude categoryYou can use it List category posts
Forum: Fixing WordPress
In reply to: How To Set Description Of Each post Get automaticallyuse the Yoast Plugin
Forum: Fixing WordPress
In reply to: what is a T_string?Try this one
<?php function twentytwelvechild_custom_excerpt_length( $length ) { return 100; } add_filter( 'excerpt_length', 'twentytwelvechild_custom_excerpt_length'); function twentytwelvechild_new_excerpt_more($more) { global $post; return ' <a href="'. get_permalink($post->ID) . '">Read the rest...</a>'; } add_filter('excerpt_more', 'twentytwelvechild_new_excerpt_more'); ?>Forum: Fixing WordPress
In reply to: what is a T_string?looks like code is ok
Forum: Fixing WordPress
In reply to: A simple way to change images in the sidebar on each page?Try this plugin WordPress Random Image
Forum: Fixing WordPress
In reply to: how to remove sidebar in one page (2013)Ok…go to footer.php file and use the Conditional Tag. See the Codex