Tagged Questions
0
votes
3answers
46 views
How do I say IF class #1 on left, if class #2 on right in loop
I have a loop in wordpress that will spit out two classes. One class photos, the other is video. Once a new photo or video is added, it just adds below the last div.
Example:
Photos
Photos
...
0
votes
3answers
33 views
How to limit an excerpt in wordpress?
I'm using the Events Calendar by Modern Tribe in my website and I want to modify the widget. I have everything the way I want it except for one small detail... the excerpt. This is how the section ...
0
votes
1answer
36 views
How do I use jquery inside WordPress Loop?
How do I use jquery inside WordPress Loop without repeating effect
<div class="post">
<?php if ( have_posts() ) :
while ( have_posts() ) : the_post(); ?>
<a ...
0
votes
1answer
38 views
PHP error in code, help debugging
This is a Wordpress project (using Advanced Custom Fields) but the error I am getting is due to plain PHP code that I do not have a good enough grasp of. The code below returns a server error and is ...
0
votes
1answer
30 views
Next / Prev post link not working wp
Ok so I am having issues with linking to next and previous posts...
Here is my code:
<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
...
...
0
votes
1answer
47 views
Inserting content before <p> tags in PHP
Though this is Wordpress orientated, I think the basis of the PHP is more a Stackoverflow question:
I would like to add a template_part (similar to include()) before the first <p> in a post.
I ...
0
votes
0answers
12 views
Wordpress prev/next_link not working correctly on only 1 page?
My nav.php looks like this:
<div class="navigation">
<div class="next-posts"><?php next_posts_link('« Older Entries') ?></div>
<div class="prev-posts"><?php ...
0
votes
1answer
32 views
Wordpress get_posts inside WP_Query loop
I have a content template which runs the main loop:
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>
Inside this loop I create a get_posts():
<?php
$args = array(
...
0
votes
1answer
37 views
how can I give a variable another value inside a function in python?
I'm creating a simple python script that checks for new comments on a WordPress blog using the xmlrpc API.
I'm stuck with a loop that should tell me if there are new comments or not. Here's the code:
...
2
votes
3answers
76 views
Why does this foreach loop end early?
I'm wondering why the foreach loop in this function ends after outputting the data after it goes through the loop just once. I've run the query in MySQL and it returns the 8 records that I'm looking ...
0
votes
1answer
24 views
Displaying 1 post from a particular catergory if selected in wordpress
I'm trying to make a loop in wordpress that pulls in 1 post from 1 category when selected, But if not it should display the latest post from the custom post type I'm calling. e.g Testimonials, Latest ...
0
votes
1answer
57 views
Two column (“gap”) layout issues
I have created a two column layout wordpress loop and it is working almost good. The problem is that if I have really long content or image with large height I am getting some layout issues (having a ...
0
votes
2answers
31 views
Wordpress Wp_query object with 2 posts prints only one
I need to display the latest post from 3 categories and two posts from this last one with another HTML formatting. The problem is the last category prints only one post and stops with a var_dump() on ...
0
votes
2answers
55 views
Display specific post format with limit number of post
I create a loop in Wordpress with the condition like this:
Display a specific post format (example: video)
Limiting the post number. In this case, I only want to display 2 posts.
Here my code:
...
0
votes
1answer
49 views
Wordpress Loop Special Html Output
I am trying to get a special wordpress loop html output:
<div id="main">
<!-- Line number 1 -->
<div class="article-thumbnail" data-target="article-1" >
<div ...
0
votes
0answers
10 views
how to list (this month) post content using post meta
Hello all.
This is my cutom meta field named etkinlik
$etkinlikDate = get_post_meta(get_the_ID(), 'etkinlik', TRUE);
The output like ;
echo $etkinlikDate;
// 04-31-2013 (mm/dd/yyyy)
How can i ...
0
votes
2answers
58 views
Need To Add A Class To Last List Item Element In Custom Wordpress Loop Function Prefer jQuery
If have a fairly complex function we are using to generate a custom loop of 3 most recent posts. I am simply trying to add a class to the last li element called "last" but not really getting it down. ...
0
votes
4answers
54 views
Wordpress looping issue
On the home page of my site I want the latest post to be the biggest then the older posts to be smaller and below it. See image
I have created a wordpress loop which partly does the job, Ive zoomed ...
0
votes
1answer
62 views
Complex custom post type multiple loops in Wordpress
I have a custom post type for Staff Members of an organisation with a taxonomy named Profession. I'm using easytabs to display a matrix of photos for each member sorted into different professions. ...
0
votes
0answers
82 views
Wordpress pagination showing same content on page 2
I can’t link to the site I’m working on because it’s running locally right now. I’m trying to use pagination on the home page but what happens is that it’s displaying a link for Page 2 and Page 3 but ...
0
votes
0answers
25 views
Post meta only displaying on the first instance of loop
Currently I have a page that holds a category 'Dining' along with displaying the sub-categories of Dining and their posts, using the following code:
<?php
$taxonomy = 'category';
$param_type = ...
0
votes
1answer
33 views
How to display months in Swedish?
If I use the following in WordPress, I get the month in English, but I want it in Swedish, for instance "maj" instead of "may". Can I get dates in Swedish?
the_time('j F Y');
0
votes
1answer
27 views
Wordpress loop one category per page
So I have a standalone Wordpress site with a bunch of different categories:
March 2013
February 2013
January 2013
etc...
I'd like the homepage of my Wordpress site to display the latest category. At ...
0
votes
1answer
38 views
Previous & Next buttons on a loop for custom WordPress menu
So I've got to loop some pages with previous and next buttons...
Basically you have the first page which lists a bunch of pages in that category then when you click on of the links it takes you to a ...
0
votes
0answers
38 views
Add div to every 2nd output of loop
I am using the following to output a list of members from BuddyPress...
<div class="row-fluid">
<div class="span12">
<?php while ( bp_members() ) : bp_the_member(); ?>
...
1
vote
0answers
56 views
Nest Wordpress Loop With Multiple Meta Keys & Values
So, I'm working on a social political website. Currently I'm working on the map page that contains all 100 North Carolina Counties and when you hover each county, it's corresponding election ...
0
votes
1answer
30 views
WP_Query headache
I am trying to use WP_Query to output the 3 latest posts with the tag featured. I asked about it here on stackoverflow and got at good tip from a kind person. This is what I have now:
<?php
...
0
votes
3answers
70 views
Show 3 latest posts from featured category (Wordpress)
On a startpage I'm working on, I want to show only the 3 latest posts witch has the tag featured. Must be a really basic thing to do with "The Loop", but I can't find the answer anywhere, and it feels ...
0
votes
1answer
40 views
How to loop all category posts except the open one in wordpress?
in my single.php i want to show all category posts except the opened post.
Here is my code: pastebin.com loop code
Here is the code for category posts loop, it loops all category posts and the ...
0
votes
0answers
42 views
Compare Wordpress shortcode with $_GET in loop and return on te right position
I use shortcodes in my Wordpress page. With a query string I compare some data to the shortcodes. The querystring looks like this: ?results&answer1=1&answer2=1
Wordpress example usage:
...
0
votes
1answer
49 views
While loop running twice?
Why is this while loop showing the content two times before moving to the next entry? I've got double vision! Double entries instead of just a list of single entries. I'm using transient data with ...
0
votes
0answers
98 views
Wordpress bootstrap modal query loop issue?
Hi i'm currently facing an issue with inserting content into the bootstrap modal.
So far by querying custom post type, i'm able to get them the various custom post to display on the page. At the same ...
0
votes
0answers
64 views
Group Posts in Custom Post Type Monthly Archive by date
I am trying to group posts in custom post type monthly archive by term.
That mean posts to be listed under the term name for that specific month.
Here is the code I am using right now. Its working ...
1
vote
1answer
79 views
Wordpress sort posts by multiple meta values
i would like to sort my posts first by "time" meta value and secondly by "clicks" meta value.So if 2 posts have the same "time" the one with less clicks will go first.
$args=array(
...
0
votes
0answers
18 views
Group Date Archives by term_id
I am trying to group posts in Yearly date archive page by term:
here is the code I am using :
<?php
$terms = get_terms("publicationcat");
$count = count($terms);
if ( ...
0
votes
1answer
98 views
get first image in wordpress repeater array
I have a while loop that gets a thumbnail and then all a bunch of other images in a div for fancybox. I need it so that when a thumb is clicked it expands first image in the repeater field of images ...
0
votes
1answer
92 views
wordpress keeps looping to wp-admin.php on Nginx
I just installed a fresh instance of wordpress 3.5.1 from the latest.tar.gz file.
The installation dir is:
/home/wordpress
The DB access is ok. The site displays properly at the url doc.site.com
...
0
votes
3answers
58 views
Counter using foreach in php
I'm trying to get my counter to, well, count. I'm trying to add a classname (even) to every second post displayed using the following:
<?php
global $paged;
global $post;
...
0
votes
1answer
13 views
Wordpress custom loop showing duplicate content
I'm setting up a custom loop in my custom_functions.php. The basic idea of the loop is this
function category() {
if (is_category(3557)) {
News Category content
}
else{
Main ...
0
votes
0answers
13 views
Change the id inside the loop in wordpress
I am working on wordpress loop and bit confused that how I can the value of id
I want that when loop run then the value of
data-horizontalPosition="center" data-verticalPosition="top" ...
0
votes
1answer
238 views
How to load Wordpress Post with Ajax onclick
I have spent hours reading and trying tutorials. I cant seem to find a solution that works and I know it should be pretty easy but I struggle with AJAX. :(
I want to load Post content from a link in ...
0
votes
1answer
49 views
Divide query result into lists based on field
I'm creating a custom page with Wordpress and need to divide my query results into lists based on a tag. I know there's a Wordpress stack exchange but this seems more like a basic PHP function to me. ...
0
votes
0answers
47 views
Side by Side div layout for a blog
So I've encountered an issue with the website I'm designing.. I've only just started using html/css so any ideas are much appreciated.
At the moment I've got an index page, which will use WordPress ...
0
votes
0answers
44 views
Wordpress Price list, query/loop within query/loop
I'm developing a theme for a cafe.
The page structure is something similar to
Home
|
Menu
|
Starters - starter_1 - starter_2
|
Mains - main_1 - main_2
...
0
votes
1answer
96 views
Continuing a WordPress PHP Loop
I'm currently trying to develop a custom Wordpress theme, and on my homepage I need to add a second content block. I am using a plugin to do this, which simply requires me to add the following where I ...
0
votes
3answers
57 views
Limiting posts in loop
Hi I have a loop with testimonials using advanced custom fields. I need the loop to only loop one post at a time randomly i have tried query_posts but its doest work.
<?php
...
0
votes
2answers
71 views
If Loop has odd number of posts on last page then Custom style for last post in it
My loop displays posts in two columns using this:
<?php
if (have_posts()): while (have_posts()) : the_post();
$count++;
?>
<?php if ($count == 1) : ?>
<div ...
1
vote
0answers
41 views
Fancybox in loop for youtube videos
This has been driving me crazy for the past few days, so I figured I would ask the question on here, there were similar posts... but none of them solved the issue. Thanks in advance for your help!
...
0
votes
0answers
82 views
Ajax loading next pages with huge wordpress loop
I have a pretty huge wordpress loop, as I need to create responsive layout that has one column on low res, two columns on mid-res and three columns on highest resolutions. I've set everything well on ...
3
votes
1answer
779 views
Wordpress PageNavi Plugin Doesn't Work on category.php
I have a problem with PageNavi showing 126 pages (for 126 posts -- that part is almost correct), but instead of breaking it down by 10 (expecting 13 pages) it shows all posts in every page. If I ...


