lerizzle
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permalinks how toI think what you are looking for is just the permalink setting in the sidebar. Click on it you’ll see.
Forum: Fixing WordPress
In reply to: query args not reflected in requestGo it… It was a plugin for custom page order. The bizarre thing is that with other themes it was fine.
Forum: Fixing WordPress
In reply to: query args not reflected in requestWaiting for the site owner to reset his credentials….
Forum: Fixing WordPress
In reply to: query args not reflected in requestActually their posts are in the right order… So it’s something in my genesis install I guess
Forum: Fixing WordPress
In reply to: query args not reflected in requestNot sure because that widget is not there.
Forum: Fixing WordPress
In reply to: Permalinks how toSo I’ve now got this:
function add_testing_query_var() {
global $wp;
$wp->add_query_var(‘testing’);
}add_filter(‘init’, ‘add_testing_query_var’);
function add_testing_rewrite_rule() {
add_rewrite_rule(‘testing=/(\d*)$’, ‘index.php?testing=$matches[1]’, ‘top’);
}add_action(‘init’,’add_testing_rewrite_rule’);
My problem is when I go to
https://www.mysite.com/mypage/testing/2
I get a page not found. Can anyone shed some light on this?
Thanks.
Dan
Forum: Fixing WordPress
In reply to: Skip user logout confirmation pageI have the same issue too. I believe it might be because of theme my login. Anyone know how to disable that?
Forum: Localhost Installs
In reply to: WordPress 3.3, update_user_meta and wp_users/wp_usermeta issueyes code monkey use wp_update_user to add the user_url.
Forum: Localhost Installs
In reply to: WordPress 3.3, update_user_meta and wp_users/wp_usermeta issueand to get the value in 3.3
global $current_user;
echo ( $current_user->__get( ‘user_url’ ) );Forum: Localhost Installs
In reply to: WordPress 3.3, update_user_meta and wp_users/wp_usermeta issuefigured it out for me.
I was using update_user_meta on the front end. You have to use
wp_update_user( array ('ID' => $user_id, 'user_url' => 'https://www.site.com' ) ) ;
Forum: Localhost Installs
In reply to: WordPress 3.3, update_user_meta and wp_users/wp_usermeta issueNot showing just yet. trying to figure out why it’s not inserting properly.
Forum: Localhost Installs
In reply to: WordPress 3.3, update_user_meta and wp_users/wp_usermeta issueI have noticed the same. did you find a workaround?
Forum: Fixing WordPress
In reply to: Proper way to include jquery UI to your plugin option pagehttps://codex.www.ads-software.com/Function_Reference/wp_enqueue_script
There’s actually a section on adding script to your plugin page
Thanks that’s what I ended up doing, 2 queries.
I want the sticky in category 6, if there’s none get the latest in category 6.
Forum: Fixing WordPress
In reply to: Adding wysiwyg to custom filedNot that anyone was bothering answering but I got my answer. 3.3 https://codex.www.ads-software.com/Function_Reference/wp_editor