akisok2
Forum Replies Created
-
Holy crap, I nearly had a heart attack today with this error. One minute I was logged in and adding content, the next I was locked out after updating the WP Better Security plugin to version 4.0.5. WHOA!
Thankfully, the solution presented by @the_target worked for me and I too am waiting for a new update before I re-activate this plugin.
Forum: Fixing WordPress
In reply to: Customize the excerpt meta boxThe easiest solution I’ve discovered is to go to edit-form-advanced.php in the wp-admin folder and look for line 129:
if ( post_type_supports($post_type, 'excerpt') ) add_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', $post_type, 'normal', 'core');Modify the content inside the
_('Excerpt')and you should be good to go.Forum: Developing with WordPress
In reply to: Not shoing the the_date for each post when using get_postsThanks for the tip, but I actually need the date to show, not the time. Replacing the_date() with the_time() puts (obviously) the time each article was published under the headline, and not the date.
Anybody else have an idea?
Forum: Fixing WordPress
In reply to: Remove ALL styling wp_list_categoriesThanks to nenjahinurgras for that tip. I too have been wracking my brain over how do find that function and modify it. Good job!
Forum: Fixing WordPress
In reply to: Show Excerpts Only on Category PagesIt’s pretty easy. Here is a link to the explanation. Once you read it, you’ll kick yourself for not figuring it out. I know I did:
http://lorelle.wordpress.com/2006/07/19/display-post-excerpts-only-in-wordpress/
Forum: Fixing WordPress
In reply to: How to remove “»” from title?Thanks moshu! That was exactly what I was looking for. I just changed line 139 so that the character WP inserts in the title is ‘_’ instead of the ‘»’
Forum: Fixing WordPress
In reply to: How to remove “»” from title?My own modified version of the Kubrick default.
Forum: Fixing WordPress
In reply to: How to remove “»” from title?Thanks samboll — except here is what my title tag looks like:
<title><?php bloginfo(‘name’); ?><?php wp_title(); ?></title>
So I am confused…
Forum: Fixing WordPress
In reply to: How to remove “»” from title?webtodd — I am looking for that answer as well. The link posted did not help me. Have you been able to remove it from the titles?