AJ Troxell
Forum Replies Created
-
Sorry for my late reply. Latest version of WP, no plugin files were altered. Thanks for the update, ill give it a try!
Forum: Fixing WordPress
In reply to: Headers already sent, but can't find errorI resolved it on my own. It was, as the error stated, part of my functions file. Removing the comments resolved the issue.
Forum: Fixing WordPress
In reply to: Headers already sent, but can't find errorAs I stated, I know where the problem usually lies. It is that this time I cannot locate the problem. That is why I am asking someone to take a look at if for me to see if they can see something im not.
Forum: Hacks
In reply to: Translation function calls must NOT contain PHP variablesResolved
Forum: Hacks
In reply to: Translation function calls must NOT contain PHP variablesThanks for the clarification Otto. Learning as best I can.
Forum: Hacks
In reply to: Translation function calls must NOT contain PHP variablesForum: Fixing WordPress
In reply to: "Sample-page" in Permalink StructureI knew that. Just as there is a sample-post page. My question was regarding why it is included in my permalinks for other pages etc. But as it turns out it was a stupid mistake on my part, I had all of my other pages set as children of this page. It is corrected now. Thanks.
Using the subdomain setup has always been hit or miss on my end. I personally would suggest the subfolder setup and using a domain mapping plugin to change it to a subdomain or primary domain. Its not perfect but it works.
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Same page title for all articlesThis is a result of bad code in your theme, I’m quite sure. I’ll try to control for it a bit better in the next version of the plugin, but don’t blame a plugin if you use a crappy theme, it’s working well for tens-of-thousands of people.
There is no excuse for acting like a jerk. You may not have meant to, but you came across as a prick in your response. And because it works well for “tens-of-thousands” of people does not mean it works well overall. Tens-of-thousands is very limited in the scope of how many people use WordPress. As well as the fact that he never placed blame on the plugin. He was simply stating an issue that he was having and requested that someone help him in figuring it out.
I am here because I too have the same issue and wondered if anyone had come across it. I have been building my own WordPress themes for a while. Am I an expert? Not at all. Do I know what i’m doing? Enough. And no, it is not an issue with my theme. It’s an issue with the plugin.
Forum: Fixing WordPress
In reply to: Custom Post Type Category QueryGot the example that jimmyt1988 gave, working… amazing as it is, it seems a bit cumbersome. Is there a way to do this without having to add anything to the nav links? This prevents the user from being able to add category/terms in the long run.
Forum: Fixing WordPress
In reply to: Custom Post Type Category QueryI have changed it around a bit:
<?php $currentTerm = $_GET[ 'term' ]; ?> <?php $query = new WP_Query( array( 'post_type'=>'menu', 'taxonomy'=>'category', 'term' => $currentTerm, 'orderby' => 'menu_order', 'order' => 'asc' ) ); ?> <?php while ($query->have_posts()) : $query->the_post(); ?>
Still to no avail… it’s still showing ALL posts from all terms.
Forum: Fixing WordPress
In reply to: Custom Post Type Category QueryWhenever I do it… it calls all posts from within the custom post type for some reason.
I am using:<?php $currentTerm = $_GET[ 'term' ]; ?> <?php $loop = new WP_Query(array('post_type'=>'menu', 'taxonomy'=>'category', 'term' => $currentTerm, 'orderby' => 'menu_order', 'order' => 'asc')); ?> <?php while ($loop->have_posts()) : $loop->the_post(); ?>
Forum: Fixing WordPress
In reply to: Custom Post Type Category QueryGood call! Thanks a ton!
Forum: Fixing WordPress
In reply to: Custom Post Type & Multiple ColumnsI think that may have worked. Thank you. I was making it very over-complicated, over thinking it. Thanks again!
Forum: Fixing WordPress
In reply to: 3 Post Columns with query_postsGot pagination working properly! Thanks for the help!