I am looping in wordpress using WP_query and need to list me only from 2 post, ignore the first 1 post.
Previously I used the query_posts (offset) to do this, but using wp_query I'm not getting it.
Could someone give me this help to see if...
Hello, I'm needing every time I make a new post in Wordpress run a script . I do not want to waste time making applications, I just want to know which page is responsible for sending the posts in Wordpress. I also want to know if you can get...
I need to identify categories by slug when adding a post in wordpress.
Common and functional example:
$post_id = wp_insert_post( array(
'post_author' => 1,
'post_title' => 'titulo',
'po...
I need a plugin that takes information from a form and inserts it into the database, I also want to be able to change, query and delete this data in an admin page.
They can be distinct plugins for each function.
I understand PHP fairly...
Hello! I'm trying to use some nested shortcuts, but I'm not succeeding.
The shortcodes are these, in order of declaration in functions.php:
function p_generico_shortcode( $atts , $content = null )
{
return '<p class="pov generico">...
Well I have the following problem:
I'm moving from server to agency, and I came across the following problem: it had only 1 database and within that database there were several tables with the names of the clients.
The problem is that with...
I want to change the page that displays the content when you click on a post, the story itself.
I want to put a Google Adwords ad unit on this page and put a <div> and a PHP block.
What .php page should I edit?
I'm cracking my head with a problem I'm having with Wordpress.
I am using the meta_value_num sort order from a meta_key that goes the value of some properties (the value is placed without decimals, eg: 100000 (100 thousand)). Ho...
Wordpress site of a colleague's client went out of the loop.
Message entering website:
PHP Warning: require (wp-includes / compat.php) [function.require]: failed to open stream:
No such file or directory in
E: \ home \ tecnoserviceb...
I have a problem with the loop when I make a wp_query. See my code:
$query_video = new WP_Query( $args );
$args = array(
'post_type' => 'post',
'category_name' => 'videos',
'posts_per_page' => '4',
'orderby' => 'ran...