Questions tagged as 'wordpress'

1
answer

Button that loads 3 more posts

I want my button id="boot" ( <div id="boot"> ) each time it is pressed, press +3 testimonials. <?php query_posts( array ( "category_name" => "depo" )); if (have_posts()) : while (have_posts()) : the_post(); ?> <...
asked by 24.09.2015 / 18:50
1
answer

Use Header from another WordPress site

I need to develop a website in WordPress, where I have to use the header (menu) of another site also in WordPress. One solution I found was to embed the same via Iframe, but it would have a delay a bit different from the other content on the s...
asked by 04.11.2015 / 13:11
0
answers

RSS images do not appear on Wordpress

I'm trying to pull an RSS from another site wordpress , to mine which is also wordpress . Written content appears normal, but thumbnail does not appear. Can someone tell me if it is possible to list 2 posts from another wordpress site...
asked by 06.11.2015 / 20:13
2
answers

Translate text input from WooCommerce

I installed WooCommerce in my theme, but when I click Login , Sign up , all this is in English. How to translate these little texts? I could only translate the store, the panel and some other things.     
asked by 20.10.2014 / 21:39
1
answer

Client login with news access credentials

Explanation: I have a customer list in post_type through metaboxes , where the email and password fields exist, and the client name is the_title(); Objective: I need to login with the email and password fields and check...
asked by 19.02.2014 / 21:40
1
answer

Remove spaces between pages

<?php /* Template Name: Index Page */ ?> <?php get_header(); ?> <?php $about = new WP_Query( 'pagename=home' ); ?> <?php if( $about->have_posts() ) : $about->the_post(); ?> <?php the_content(); ?> <?php endi...
asked by 27.03.2015 / 21:41
5
answers

Meta author does not incorporate when sharing on Facebook

When I share a link from my site on a Facebook page, "by AUTHOR" is not appearing. I have already reported all the correct social networks within my user profile. I'm using the YOAST plugin. As I have other sites where this is working, I left th...
asked by 15.08.2016 / 20:10
3
answers

Domain without the www does not work

At the server root I have a "wp" folder where I have WordPress installed. I put it inside the folder because the site was not made with WordPress and yes the blog. When you enter the url www.domain.com/wp the blog opens without problems, bu...
asked by 21.10.2014 / 13:02
1
answer

How to add a dynamic footer in WordPress?

I'm making a website in WordPress and wanted to know if there is a plugin that makes a footer to run, and I can change the footer content in backoffice . I do not have code because I do not know how to do it. I would like to have type in...
asked by 16.11.2015 / 15:18
2
answers

How to insert a REQUIRE in this function?

How do I insert a require into this Wordpress function for admin menu? add_action('admin_menu', function() { # $page_title, $menu_title, $capability, $menu_slug, $function = '', $icon_url = '', $position = null add_menu_page (...
asked by 02.10.2014 / 13:34