SELECT a.* FROM actions a, actions_books ab WHERE a.id= ab.aid and ab.book_id=?
CREATE TABLE `user` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`type` enum('AUT','SUB') NOT NULL DEFAULT 'SUB',
PRIMARY KEY (`id`)
);
CREATE TABLE `subscription` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`author_id` int(11) NOT NULL COMMENT 'На кого подписываются',
`subscriber_id` int(11) NOT NULL COMMENT 'Кто подписывается',
`created_at` timestamp NOT NULL COMMENT 'Время подписки',
`expired_at` timestamp NOT NULL COMMENT 'Когда истекает подписка',
PRIMARY KEY (`id`)
);
# Пусть у нас есть один автор и два пользователя:
INSERT INTO `user` (`id`, `name`, `type`)
VALUES
(1, 'Alex Pushkin', 'AUT'),
(2, 'Vasya Pupkin', 'SUB'),
(3, 'Jane Doe', 'SUB');
# Один из них подписался на Автора месяцем ранее, второй недавно
INSERT INTO `subscription` (`author_id`, `subscriber_id`, `created_at`, `expired_at`)
VALUES
(1, 2, '2020-02-15 13:46:12', '2020-03-15 13:46:12'),
(1, 3, '2020-03-15 13:46:12', '2020-04-15 13:46:12');
SELECT *
FROM subscription
WHERE author_id = 1 and expired_at < CURRENT_TIMESTAMP and created_at < CURRENT_TIMESTAMP;
.parent {
margin: 50px auto;
width: 320px;
background-image: linear-gradient(orangered 20%, transparent 20%, transparent 80%, orangered 80%);
padding: 10px;
padding-right: 0;
}
.arrow {
position: relative;
width: auto;
height: 200px;
background: rgb(240,240,240);
border-right: 10px solid orangered;
}
register_taxonomy('taxonomy', array('product'), array( ...
в array('') укажите product, чтобы таксономия применилась к товарамfrom
, to
from
— редиректить на ссылку to
с кодом 301define( 'DISALLOW_FILE_EDIT', true );
define( 'DISALLOW_FILE_MODS', true );
FS_CHMOD_DIR
FS_CHMOD_FILE
.clear,
.clear:after,
.clear:before{
content:"";
display:table;
clear:both;
}
<div class="parent clear">
<div class=""></div> в css дать ему float:left;
<div class=""></div> в css дать ему float:left;
</div>
<div class="main">
<div class=""></div> в css дать ему float:left;
<div class=""></div> в css дать ему float:left;
</div>
<div class="clear"></div>
.item {
display: flex;
align-items: center;
justify-content: center;
}
.item img{
position: relative;
left: 50%;
transform: translateX(-50%);
}
.parent {
display: flex;
justify-content: center;
align-items: center;
align-content: center;
flex-direction: row;
flex-wrap: wrap;
}
.parent {
text-align: center;
}
.child {
display: inlide-block;
}