How do I use ‘git reset –hard HEAD’ to revert to a previous commit? [duplicate]

First, it’s always worth noting that git reset –hard is a potentially dangerous command, since it throws away all your uncommitted changes. For safety, you should always check that the output of git status is clean (that is, empty) before using it. Initially you say the following: So I know that Git tracks changes I make to my application, … Read more

SyntaxError: unexpected EOF while parsing

The SyntaxError: unexpected EOF while parsing means that the end of your source code was reached before all code blocks were completed. A code block starts with a statement like for i in range(100): and requires at least one line afterwards that contains code that should be in it. It seems like you were executing your program line by … Read more

How do I check out a remote Git branch?

With One Remote With Git versions ≥ 1.6.6, with only one remote, you can do: As user masukomi points out in a comment, git checkout test will NOT work in modern git if you have multiple remotes. In this case use or the shorthand With >1 Remotes Before you can start working locally on a remote branch, … Read more

Adding WordPress Header and Footer to a PHP Script

If you want to add WordPress Header & Footer in a PHP script flow those stapes: Step-1: Upload Your PHP project in the WordPress root folder. Step-2: Added this code on the PHP script header: Well Done! Now you can use all wp functions in your PHP project, like wp_head(), wp_footer(), get_header(), get_footer(), and more.

How to count the current posts terms WordPress

wp_count_terms the function counts terms in a given taxonomy (e.g. total number of categories, total number of tags). To get what you want, get the terms for the post and just count them count( wp_get_post_terms( $post_id, $taxonomy, $args ) );. Or, assuming that in real life you might need those terms later: count() function help you to … Read more

WP_Query count posts – custom Post Type

The wp_count_posts function has parameter $type for post type to count, you should use this parameter if you want to count the number of schusslersalz A snippet Full snippet as follow: I hope this code helped

How to set 777 permission on a particular folder?

777 is a permission in Unix based system with full read/write/execute permission to owner, group and everyone.. in general we give this permission to assets which are not much needed to be hidden from public on a web server, for example images.. You said I am using windows 7. if that means that your web server is Windows … Read more

Categories PHP
error code: 521