needhelpwithnimble
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I allow googlebot to crawl my sitemap? .htaccessYeah I tried, no cigar my friend! Couldn’t seem to get it to work. Not sure why my personal reasons are a concern to you though, posted here for help not to plead a personal case!
Forum: Fixing WordPress
In reply to: How can I allow googlebot to crawl my sitemap? .htaccessI have a few reasons, but it’s crutial that my sitemap stay hidden.
Forum: Fixing WordPress
In reply to: Unable to Add/Edit/Update/Post – Admin account corrupt?Forum: Fixing WordPress
In reply to: Unable to Add/Edit/Update/Post – Admin account corrupt?Sure, what would you like a screenshot of?
Forum: Plugins
In reply to: [Custom Post Type UI] [404] Keep getting 404 after I publish?ok so you cant do anything
Forum: Plugins
In reply to: [Custom Post Type UI] [404] Keep getting 404 after I publish?sent thanks
Forum: Plugins
In reply to: [Custom Post Type UI] [404] Keep getting 404 after I publish?Tried it, didn’t work. Seems none of my posts are working
Forum: Fixing WordPress
In reply to: Website Redirection Blocking?I was hoping maybe blacklisting that website possibly? if that’s possible :/
Forum: Fixing WordPress
In reply to: WordPress Next Post IssueThat’s nice of you. Thanks again.
Forum: Fixing WordPress
In reply to: WordPress Next Post IssueTHANK YOU SOOOOOOO MUCHHH ??
whats your paypal i owe you ??
Forum: Plugins
In reply to: Random Post from Custom Post TypeI’ll try to figure it out, thanks for all your help Joey ??
Forum: Plugins
In reply to: Random Post from Custom Post TypeThat’s so close, it’s displaying series titles!
I just need the entire series now, almost as if it would just redirect to a new series how the function for the ‘post_type’ => ‘anime’ would work
Forum: Plugins
In reply to: Random Post from Custom Post Type<?php /* Template Name: Random Post */ global $post; $args = array( $randomPost = get_posts(array( 'numberposts' => 1, 'orderby' => 'rand', 'get_term_by' => 'anime', 'tax_query'=> array( 'taxonomy' => 'series', 'slug' => 'series', 'term' => 'series' ) ) )); foreach($randomPost as $post) ( wp_redirect(get_permalink($post->ID)) );
What I’m working with now, probably so off but I just don’t know
Forum: Plugins
In reply to: Random Post from Custom Post TypeI’ll try to link it, as it’s difficult to explain seeing as I’m so confused myself, but here it goes.
https://puu.sh/diTuX/3b57863985.png
I’m not actually too sure what controls the series =\ nor am I sure how to find out what does (I’m still fairly new to WP)
Forum: Plugins
In reply to: Random Post from Custom Post TypeHi Joey, Thanks but that didn’t help me too much.
I’ve managed to narrow it down a bit, the following code will work to some extent:
`
$randomPost = get_posts(array(
‘post_type’ => ‘anime’,
‘numberposts’ => 1,
‘orderby’ => ‘rand’
));foreach($randomPost as $post) (
wp_redirect(get_permalink($post->ID))
);But all it will do is display a random episode, which is on the right track, but I want it to display a random series, I don’t know how to do that!