Full width background slider
Full width background slider
Full width background slider
You have not defined a function called display_facebook_element, at least you did not include that in the code posted. Thus, you are getting the error. display_facebook_element isn’t a valid callback. It doesn’t exist.
NOTE: as my reputation is non-existent I can’t post more than 2 links. So if I say “include http part” I mean for example domain.com should be http://domain.com Hi cybmeta. What you are saying is indeed part of the problem I was having. I found out about this before you posted but was too tired … Read more
Child themes are different then parent themes (in this case Twenty Fifteen is the parent theme). Child themes are just copies of your parent themes files. Then you modify those child theme files and they override your parent theme. The advantage of doing this over creating a new theme is that you can update the … Read more
Create a page to be your front page, then on the reading settings page select use a static front page then choose your page from the dropdown. EDIT: A quick and dirty hack based on your comment would be to convert your static HTML page to PHP and use that as a template. You can … Read more
As long as you’re not redistributing your theme, you can name it whatever you want. If you ARE redistributing, you have to abide by the EULA licensing terms of the theme.
For some reason, I think the image does not take all available space that it has, you can add a width: 100%; on the .post-thumbnail img. It solves the issue here. Edit: You can see, by looking at the chrome dev tools (or firefox/IE) that the container does not have the save width as it … Read more
How to create multiple pages in a client theme?
The very very rough guess at what data architecture for it might look in WordPress would be: hotel is a Custom Post Type (individual items of something) city is a term of custom taxonomy (group of items) stars and similar data are custom fields (specific data attached to items) However there are numerous nuances in … Read more
<?php $the_query = new WP_Query( ‘cat=-7,-3′ ); ?> is the cause of your problems, WordPress has taken care of the pagination, then you’ve thrown it away and not told your new query anything about the page you’re currently on, so it defaults to the first. It’s equivalent to asking someone for a cup of tea, … Read more