When you declare a function in your plugin code which has already been declared previously in either WordPress code or in one of the plugins. 귀하의 경우 플러그 접속 코드를 선언하는 기능 중 하나가 이미 선언 이전에 중 하나에 wordpress 코드 또는 플러그 접속합니다. To prevent this you should declare your functions like this: 이것을 방지의 기능을 선언해야합니다 이렇게 :

 if(!function_exists('your_function_name')) {     function your_function_name() {         //.... 만약 (! function_exists ( 'your_function_name')) (기능을 your_function_name () (//.... Function code     } } 기능 코드)) 

It is a good idea to always define and consistently use a namespace. 그것은 좋은 아이디어를 항상 사용하는 네임 스페이스를 정의하고 일관되게합니다. For example we name all our plugin functions prefixed with tg, to identify our company. 예를 들어 우리가 우리의 플러그 접속 기능을 접두어가 붙은 이름을 다 tg, 우리 회사를 식별합니다.