Questions tagged [posts]

Blogging and other social media activities usually provide mechanisms allowing users to provide content of their own. One such unit is usually referred to as a post.

Blogging and other social media activities usually provide mechanisms allowing users to provide content of their own. One such unit is usually referred to as a post.

973 questions
6
votes
2 answers

Get facebook friends posts using graph API

I am trying to build an application which requires access to friend's feed posts. Is it possible to retrieve friend's wall posts using graph API? I checked out in the developer console and found no such funstionality. If possible can someone explain…
Aarish Ramesh
  • 6,745
  • 15
  • 60
  • 105
6
votes
2 answers

wordpress permalinks not working 500 error

i made a mess of some kind my website was running perfectly but i did some changes to wpconfig i cant seem to remember and the result is that if i dont use permalinks and use simple page id the whole website works and if i try to use permalinks all…
dannysood
  • 1,129
  • 3
  • 18
  • 36
6
votes
5 answers

list wordpress posts from current category only

I'm attempting to create a second nav menu on my wordpress site. I want this to show links to all posts within the current category only. I've been experimenting with the get_posts function but am struggling to find how to dynamically select the…
user1765225
  • 159
  • 1
  • 1
  • 5
6
votes
1 answer

How do I get the photo URL when reading a user's posts and they Like a photo?

I'm reading my user's friend's wall posts with the Graph API "/637674567/posts". One of the data items is that he likes a photo. Is there a way to get a URL for the photo? When I get the information about the item, I get the following (below). …
Tim Hertz
  • 61
  • 4
6
votes
6 answers

How to get Posts Greater Than X (ID) using get_posts

$args = array('numberposts' => 10, 'tag' => 'my-tag', 'ID' => 555'); $posts = get_posts($args); I want to bring only 10 records from an specific tag and that the ID is less than a number. Is there any way to do this with the get_posts arguments? …
Mike
  • 173
  • 2
  • 5
5
votes
1 answer

Wordpress: Query Posts without allocated taxonomies

I would like to filter all post queries by a specific term of a custom taxonomy (specified by an url). Currently I'm using add_filter('request', ...) and 'tax_query', which kind of works now. So I get all posts of this term, but I would like to get…
dcsturm
  • 51
  • 5
5
votes
1 answer

Adding posts with media using Wordpress API and Javascript library

I would like to post on my Wordpress blog using API. Since I'm in a Javascript application I would do that using this language. I have made some searches and I have found node-wpapi package, that uses Wordpress XML-RPC protocol. Everything works,…
smartmouse
  • 13,912
  • 34
  • 100
  • 166
5
votes
2 answers

Get recent wordpress posts in Laravel

I have a Wordpress site and a Laravel site and I want to display recent wordpress posts in the footer of Laravel site. How can I do this without having my wordpress database information in my config/database.php file and using it in the models? Can…
5
votes
1 answer

Display posts in different columns

Below is a code which gets blogs from database and displays it in single column on screen, I want to display blogs in multiple columns may be three,with each column displaying 10 blogs ordered by their id, so how to do that. If it is too long to…
user5311126
5
votes
3 answers

WordPress get_posts by title like

I am trying to create a small search-function for WordPress. An AJAX call should get all posts where the title is like %quote%. Is there a possibility to make this happen inside the get_posts() function? Don't get me wrong. The ajax works fine. I…
Nico Martin
  • 1,268
  • 1
  • 14
  • 23
5
votes
1 answer

Wordpress: Count number of posts, exclude uncategorized

Using this code I can easily get the total number of posts: $post_count = count_user_posts(); echo $post_count; But I need the total to not include posts that are uncategorized.
Miker
  • 194
  • 2
  • 5
  • 17
5
votes
5 answers

Wordpress latest posts menu item

I'm trying to get Wordpress to give me a menu item to go to "latest posts." They come up on the frontpage, but once I navigate away, I want a menu item to get back there. It seems so obvious, but several hours later, the best I could do was create…
Robin ANDREWS
  • 61
  • 1
  • 3
4
votes
1 answer

LinkedIn Api get Posts/Shares from owner error

I want to get shares by owners from LinkedIn api. I used the following url: https://api.linkedin.com/v2/shares?q=owners&owners=urn:li:person:{accountId} But I become this error: { "serviceErrorCode": 100, "message": "Field Value…
vDrews
  • 155
  • 5
  • 14
4
votes
0 answers

Firebase Database - Admin Panel

I am new to Firebase and want to provide an easy to use panel to my client for adding, editing and removing posts. In my earlier apps, I used Heroku - Django combo that gave me a pre-built easy to customize admin panel that was very friendly for my…
Nouman Tahir
  • 819
  • 1
  • 9
  • 26
4
votes
2 answers

How to hide Permalink section from a Custom Post Type's post?

I want to hide the permalink section under the title of a post for a particular post type in Wordpress. How can I do that?
user3132101
  • 63
  • 1
  • 4
1
2
3
64 65