justinwhall
Forum Replies Created
-
Forum: Hacks
In reply to: Add HTML just inside of the admin sectionTry add_filter and add_action
Kinda the two pillars of plugin development.
Forum: Fixing WordPress
In reply to: Double-descriptions for tagsHuh? Descriptions for tags? Tags don’t have descriptions. I think maybe you have your terminology confused?
Forum: Fixing WordPress
In reply to: How to add a link to a web site in the caption line of a photographThis isn’t really a wordpress questions at all but a hyper link looks like this:
<a href="URL" title="link title" target="link target" class="link class">link label</a>Forum: Fixing WordPress
In reply to: Missing footer & dashboard linksIt’s tough to say without looking at your source files. was the footer present on the other pages at one point? It’s entirely possible that the footer area that you are missing isn’t included on those page templates.
Forum: Fixing WordPress
In reply to: Updated theme Now site wont do squatWhere to start. Could be any number of things. If there is a database error, it’s very likely something went wrong durring the upgrade.
I assume you backed everything up like you’re suppose to right? 🙂
Forum: Your WordPress
In reply to: Our New WordPress Business websiteThe solution is easy. Delete it.
Creating a whole array of pages essentially the same for SEO purposes is pretty much exactly what google and other major SE DON’T want. Not only does it not add any value to the interent or user experience it detracts.
Sorry, but that kind of “SEO” is a peeve of mine.
Forum: Your WordPress
In reply to: Our New WordPress Business websitePersonally, I find the “SEO links” in the footer annoying. Not only do they provide an sort of value to the user, but it’s confusing to most.
Forum: Fixing WordPress
In reply to: open_basedir restriction in effectNope. No php.ini file. Not my host. Believe me, I would much rather be on a linux server.
Thanks for the response tho.
Forum: Fixing WordPress
In reply to: WP is Limited to 10K UsersAny progress on this?
Yep, wp_options. Sorry about that. It’s rare, but I am wrong from time to time. 😉
You are going to need to make this change via phpadmin. Familiar with that? If i recall, you can find your site URL in the wp_settings table.
Nope, sorry I’m good. My template tags were the problem. Bad setting.
Thanks for what I think is the best SEO WP plugin Joost. Kudos.
hmmm, make that just on CPT Single pages…
hmmmmm, I to am missing the title and description. Just getting site name on CPTs.
add_action('init', 'codex_custom_init'); function codex_custom_init() { $labels = array( 'name' => _x('Rides', 'Ride'), 'singular_name' => _x('Rides', 'Ride'), 'add_new' => _x('Add New', 'Ride'), 'add_new_item' => __('Add New Ride'), 'edit_item' => __('Edit Ride'), 'new_item' => __('New Ride'), 'all_items' => __('All Rides'), 'view_item' => __('View Ride'), 'search_items' => __('Search Ride'), 'not_found' => __('No Rides found'), 'not_found_in_trash' => __('No Rides found in Trash'), 'parent_item_colon' => '', 'menu_name' => 'Rides' ); $args = array( 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'show_ui' => true, 'show_in_menu' => true, 'query_var' => true, 'rewrite' => true, 'capability_type' => 'post', 'has_archive' => true, 'hierarchical' => false, 'menu_position' => null, 'supports' => array('title','editor','author','thumbnail','excerpt','comments') ); register_post_type('Rides',$args); }Gonan take a closer look, but thought I’d chime in…
did you find what the issue is here? I’m having the same problem.